java list to arrya code example
Example 1: java array to list
Integer[] spam = new Integer[] { 1, 2, 3 };
List<Integer> list = Arrays.asList(spam);
Example 2: java list to array
List<Foo> list = new ArrayList<>();
Foo[] array = list.toArray(new Foo[0]);