cast array to list code example

Example 1: Create ArrayList from array java

new ArrayList<>(Arrays.asList(array))

Example 2: convert array to list java

Arrays.asList(array);

Example 3: convert array to list java

/*
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);

Tags:

Java Example