1、数组转List:使用 Arrays、asList(array)进行转换。
2、List转数组:使用 List 自带的 toArray()方法。
代码示例:
// list to array
List list = new ArrayList();
list.add ("123");
list.add ("456");
list.toArray();
// array to list
String[] array = new String[]{ "123","456"};
Arrays.asList(array);

Was this helpful?

0 / 0

发表回复 0

Your email address will not be published.