how to insert data on top of arraylist in java code example
Example: java arraylist add to top
//create an ArrayList
ArrayList<String> myList
= new ArrayList<String>();
//some items to ArrayList
myList.add("One");
myList.add("Two");
myList.add("Three");
/*
* To insert element at beginning of ArrayList
* use add method of ArrayList class with index 0
*/
myList.add(0, "Zero");