I wrote a program where I used a Scanner to read lines from log files and parse each line to find something important. It is important that I read every line of the log file. I wrote the following piece of code to scan each line

Scanner s = new Scanner(new File("Large.log"));
while(s.hasNextLine())
{
    String line = s.nextLine();
    //do the processing of the log line
}

The above code behaves in a weird manner. It stops reading lines after a random number of lines [around after 1 million lines]. I modified the above code to check the last line read and also checked the log file using Notepad++. There were a lot of lines remaining in the file after that particular line. I added another System.out.println(s.hasNextLine()) after the end of the while loop and it prints false.

However if I try to do the above using a BufferedReader the program works fine. Is there any limitation with the util IO classes in Java?

link|improve this question

When u use BufferedReader, are you using readLine() or read()? Also is the last line read random or fixed or is "random number of lines" determined by a printout to a file or screen? – Apprentice Queue Feb 13 '11 at 6:32
I used the same readLine. The last line is random. The number of lines read was random. – Swaranga Sarma Feb 13 '11 at 6:40
Sorry another silly question, is another process appending lines to the file while you are reading it? For example is the random number of lines read actually increasing? – Apprentice Queue Feb 13 '11 at 9:16
No nothing of that sort is happening. It is an independent process withou any intervention from any other process/thread. – Swaranga Sarma Feb 13 '11 at 17:51
feedback

3 Answers

This sounds like a large file support issue with your particular JVM implementation. It is a common problem for a lot of standard file I/O to not work with files > 4 GB on 32-bit OSs. There are typically alternative versions of the file APIs to explicitly support large files, but the person implementing the JVM would have to remember to use those. Out of curiosity what OS are you using and is it 64-bit?

link|improve this answer
I was using Windows 7 64 bit. JDK 1.6 Update 21. The log file was 3.12 GB. – Swaranga Sarma Feb 13 '11 at 6:39
feedback

I just dumped a string containing 50 characters to a temporary file, repeating the string 5 million times. And Scanner works fine for me when I try to read the file line by line.

I see two possible problems in your case :

  1. May be you are trying to read a huge line that passes Scanner's internal buffer size for reading a line ?
  2. Though unlikely, I hope there are no concurrent modifications to the same file by a different process/thread.
link|improve this answer
feedback

I realized that my IO scanner was stopping (on a movie database) when it hit the Synopsis which of course is several paragraphs. Therefore I come to the conclusion (after I removed the column from excel for synopsis) and recreated my text file that the scanner started working. I think the above theory is valid about a limit on the size of a line.

Still working on figuring out a solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.