Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

java array add element

// A better solution would be to use an ArrayList which can grow as you need it. 
// The method ArrayList.toArray( T[] a ) 
// gives you back your array if you need it in this form.

List<String> where = new ArrayList<String>();
where.add(element);
where.add(element);

// If you need to convert it to a simple array...

String[] simpleArray = new String[ where.size() ];
where.toArray( simpleArray );
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #java #array #add #element
ADD COMMENT
Topic
Name
7+4 =