0

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 1

0

ArrayOfArrayOfString is ArrayOfString[], so it would be

ArrayOfString[] array;
int size = array.length()
Sign up to request clarification or add additional context in comments.

2 Comments

No, it says: "incompatible types: ArrayOfArrayOfString cannot be converted to ArrayOfString[]" :(
it seems similar to this problem, also see the accepted answer at stackoverflow.com/questions/505943/…

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.