私はtransactionHandler.logと呼ばれるログファイルを持っているという奇妙な問題を抱えています。これは17102行の非常に大きなファイルです。これはLinuxマシンで次のことを行うと取得します。
wc -l transactionHandler.log
17102 transactionHandler.log
しかし、次のJavaコードを実行して行数を出力すると、o/pとして2040が得られます。
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);
}
}
理由を教えてください。