java array from list code example
Example 1: java list to array
String[] arr = list.toArray(new String[list.size()]);
Example 2: java array to list
/*
Get the Array to be converted.
Create the List by passing the Array as parameter in the constructor of the List with the help of Arrays. asList() method.
Return the formed List.
*/
String[] namedata = { "ram", "shyam", "balram" };
List<String> list = Arrays.asList(namedata);
Example 3: java array to list
int[] spam = new int[] { 1, 2, 3 };
Arrays.stream(spam)
.boxed()
.collect(Collectors.toList());