View Single Post
  #1 (permalink)  
Old 11-14-2007, 09:34 PM
ravian ravian is offline
Senior Member
 
Join Date: Nov 2007
Posts: 115
ravian is on a distinguished road
Changing size of Array
I have a String array of size 5. Is it possible to increase its size on the fly and retaining the data of the array.

Code:
String[] array = new String[5]; … array = new String[10];
Thanks.
Reply With Quote
Sponsored Links