如何将File []数组内容添加到ArrayList中?

这个问题在这里已经有了答案:

  • 从数组32中创建ArrayList答案

  • 尝试这个

    tempList.addAll(Arrays.asList(temp));
    

    使用以下

    List<File>tempList = Arrays.asList(temp);
    

    您可以遍历数组并将每个元素添加到列表中。

    for (File each : temp)
      tempList.add(each);
    
    链接地址: http://www.djcxy.com/p/17631.html

    上一篇: How to add File [] Array content into ArrayList?

    下一篇: How can I create a java.sql.Array of Strings?