如何将文件 [] 数组内容添加到数组列表中?
我有一个数组:
File [] temp=null;
我有一个类型:arrayList
File
List <File> tempList = new ArrayList <File>();
现在我想将内容从 添加到 。所以任何人都可以告诉我我该怎么做?temp
tempList
我有一个数组:
File [] temp=null;
我有一个类型:arrayList
File
List <File> tempList = new ArrayList <File>();
现在我想将内容从 添加到 。所以任何人都可以告诉我我该怎么做?temp
tempList
试试这个
tempList.addAll(Arrays.asList(temp));
如果您不打算更新数组的内容(添加/删除元素),它可以像这样简单
List<File> tempList = Arrays.asList(temp);
当然,如果你想要一个可以进一步操作的列表,你仍然可以做一些类似的事情
List<File> tempList = new ArrayList<File>(Arrays.asList(temp));