string array to list code example

Example 1: Create ArrayList from array java

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

Example 2: Create ArrayList from array java

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

Example 3: string array to arraylist android

String [] strings = new String [] {"1", "2" };
List<String> stringList = new ArrayList<String>(Arrays.asList(strings)); //new ArrayList is only needed if you absolutely need an ArrayList

Example 4: java string array to arraylist

new ArrayList( Arrays.asList( new String[]{"abc", "def"} ) );

Tags:

Java Example