7

我正在使用 Scanner 类进行学习,我用它来读取一个非常大的文件(大约 60.000 行)而不使用 Reader 类,它在大约 400 行后停止读取。我必须在 Scanner 的构造函数中使用 Bufferedreader 还是问题出在其他地方?我想知道为什么会这样。谢谢。我的代码是输出所有行的常用代码。

File file1 = new File("file1");
Scanner in= new Scanner(file1);
while  (scan.hasNextLine()  ) {
String str = scan.nextLine();
System.out.println(str);
}
4

2 回答 2

4

这个问题通常在 64 位机器上更常见,或者文件大小超过 1-2 GB 并且与堆空间无关。切换到 BufferedReader 它应该可以正常工作,

BufferedReader br = new BufferedReader(new FileReader(filepath));
String line = "";
while((line=br.readLine())!=null)
{
    // do something
}
于 2013-11-06T13:55:31.303 回答
3

我刚刚遇到了这个问题。似乎只需更改扫描仪结构即可。替换这个:

File file1 = new File("file1");
Scanner in= new Scanner(file1);

有了这个:

FileReader file1 = new FileReader("file1");
Scanner in= new Scanner(file1);

当您在系统不知道它是文本文件的情况下从文件构建扫描仪时,可能会出现问题。

于 2015-01-13T20:34:19.250 回答