Java examples for Collection Framework:Vector
Append all elements of other Collection to Vector
import java.util.Vector; import java.util.ArrayList; public class Main { public static void main(String[] args) { Vector v = new Vector(); v.add("1");/*from w ww . jav a2 s . c o m*/ v.add("2"); v.add("3"); ArrayList arrayList = new ArrayList(); arrayList.add("4"); arrayList.add("5"); v.addAll(arrayList); for(int i=0; i<v.size(); i++) System.out.println(v.get(i)); } }