Has anyone written their own custom array class for use in JSP? May be for multidimensional arrays.
Printable View
Has anyone written their own custom array class for use in JSP? May be for multidimensional arrays.
you could if you wrote a wrapper for a vector and perform an isinstaceof ClassName check on every element added to the list for object arrays, or you could used a string and have primitive values stored in it and delineated by some abritray character
what are you asking?
I'm looking for something that has more features than the one available as a class in jdk. Features like giving an index and get the value or have an add feature which inserts elements at the end? Maybe remove. Or be able to have them multi-dimensional.
oh are you talking about Array as in "float [] [] []" or some Array class (which i've never used nor seen, but have heard of i think...)?
You know where I can find a good class?
if u need help with arrays check out www.java.sun.com and look up the arrays. It will tell you all the crazy thing imaginable with an array