java中数组和ArrayList的转换
1. List转换为Array
String[] arr = new String[] { "1 ", "2 "};List list = Arrays.asList(arr);
?