I have the following problem, where work handles the data of Web services of the following way
String v[]= new String [100];
it receives data of this way and it dispatches data of the same way,but you know that I cannot always leave this array with a static size, my doubt is how I can handle arrays with variable size?
Eric