将txt文件读取到数组时的效率

时间:2012-07-25 10:51:00

标签: java arrays filereader performance

我编写了一个脚本,其中我将 .txt 文件读入arrays。它工作得很好,但我很好奇是否有更有效的方法来读取 .txt 文件。 我有这个:

try {
    String line;
    filestart = new BufferedReader(new FileReader("C:\\path\\file.txt));
    for (line = filestart.readLine(); line !=null; line = filestart.readLine()) {
        array.add (line);  
    }
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

是否有一个将BufferedReaderFileReader结合起来的功能?

Scanner如何与我的相比?

0 个答案:

没有答案