Ok, I did a method in a Web Service on .NET and when a call the code in JSP I get an ArrayOfArrayOfString and in the web service i returned a String[][] Now that I want the size of the ArrayOfArrayOfString, I can't. How can I convert the ArrayOfArrayOfString into a String[][] or how do I get the size of the ArrayOfArrayOfString Thanks...
1 Answer
ArrayOfArrayOfString is ArrayOfString[], so it would be
ArrayOfString[] array;
int size = array.length()
2 Comments
albita
No, it says: "incompatible types: ArrayOfArrayOfString cannot be converted to ArrayOfString[]" :(
Foolish Boy
it seems similar to this problem, also see the accepted answer at stackoverflow.com/questions/505943/…