Array List <file>到Array File [] </file>

时间:2013-02-28 17:32:18

标签: java arrays file arraylist

我必须将ArrayList形成为“普通”阵列文件[]。

File[] fSorted = (File[]) x.toArray();

错误:Cast Exception

Exception in thread "Thread-5" java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to [Ljava.io.File;

如何将列表x作为File [] -List?

返回

-

我的功能:

private File[] sortFiles(File[] files){;

    ArrayList<String> allFiles = new ArrayList<String>() ;
    for (int index = 0; index < files.length; index++)  
    {  
        File afile = new File(files[index].toString());
        allFiles.add(afile.getPath().toString());

    } 
    java.util.Collections.sort(allFiles);

    ArrayList<File> x = new ArrayList<File>();
    for(int i = 0; i< allFiles.size(); ++i){
        x.add(new File(allFiles.get(i)));
    }
    File[] fSorted = (File[]) x.toArray();

    return fSorted;

}

1 个答案:

答案 0 :(得分:22)

使用:

File[] fSorted = x.toArray(new File[x.size()]);