我有一个奇怪的问题,我有一个名为 transactionHandler.log 的日志文件。它是一个非常大的文件,有 17102 行。当我在 linux 机器上执行以下操作时,我得到了这个:
wc -l transactionHandler.log
17102 transactionHandler.log
但是当我运行以下 java 代码并打印行数时,我得到 2040 作为 o/p。
import java.io.*;
import java.util.Scanner;
import java.util.Vector;
public class Reader {
public static void main(String[] args) throws IOException {
int counter = 0;
String line = null;
// Location of file to read
File file = new File("transactionHandler.log");
try {
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
line = scanner.nextLine();
System.out.println(line);
counter++;
}
scanner.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
System.out.println(counter);
}
}
你能告诉我原因吗?