First Step you need to create a list instance through Arrays.asList();
String[] args = new String[]{"one","two","three"};
List list = Arrays.asList(args);//it converts to immutable list
Then you need to pass 'list' instance to new ArrayList();
List newList=new ArrayList<>(list);