java add to int array code example
Example 1: java array add element
List<String> where = new ArrayList<String>();
where.add(element);
where.add(element);
String[] simpleArray = new String[ where.size() ];
where.toArray( simpleArray );
Example 2: how to add the last area of an array in java
String[] rgb = new String[] {"red", "green"};
String[] rgb2 = new String[rgb.length + 1];
System.arraycopy(rgb, 0, rgb2, 0, rgb.length);
rgb2[rgb.length] = "blue";
rgb = rgb2;
Example 3: how to add a number to an array in java
List<Integer> myList = new ArrayList<Integer>();
myList.add(5);
myList.add(7);