how to convert a arrayof string to arraylist code example
Example 1: Create ArrayList from array java
new ArrayList<>(Arrays.asList(array));
Example 2: java string array to arraylist
new ArrayList( Arrays.asList( new String[]{"abc", "def"} ) );
new ArrayList<>(Arrays.asList(array));
new ArrayList( Arrays.asList( new String[]{"abc", "def"} ) );