Is there a shortcut to add (in fact append ) an array of int to an ArrayList? for the following example
ArrayList<Integer> list=new ArrayList<Integer>();
int[] ints={2,4,5,67,8};
Or do I have to add the elements of ints one by one to list?