2

.txtファイルを.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();
}

と を組み合わせた機能はBufferedReaderありFileReaderますか?

Scanner私が持っているものと比べてどうですか?

4

0 に答える 0