String[] arr = { 1, 2, 3, 4 } ArrayList<Integer> list = new ArrayList<Integer>(); Collections.addAll(list, arr); // 'list' now contains [1, 2, 3, 4]