How to append Array in Java 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: java add element to existing array
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 objects in array java
car redCar = new Car("Red");
car Garage [] = new Car [100];
Garage[0] = redCar;
Example 4: how to add to an array
var ar = ['one', 'two', 'three'];
ar[3] = 'four';