[Solved] java add item from a arraylist to another arraylist [closed]


Get it from one, put it in another

al_strings1.add(al_strings2.get(fromPosition)); 

the same as doing

Object itemFromListTwo = al_strings2.get(fromPosition);
al_strings1.add(itemFromListTwo); 

3

solved java add item from a arraylist to another arraylist [closed]