I have a big file. It includes approximately 3.000-20.000 lines. How can I get the total count of lines in the file using Java?
|
Update: To answer the performance-question raised here, I made a measurement. First thing: 20.000 lines are too few, to get the program running for a noticeable time. I created a text-file with 5 million lines. This solution (started with java without parameters like -server or -XX-options) needed around 11 seconds on my box. The same with |
|||||||||||
|
|
use LineNumberReader something like
|
|||||||||||||
|
|
Read the file through and count the number of newline characters. An easy way to read a file in Java, one line at a time, is the java.util.Scanner class. |
|||
|
|
|
All previous answers suggest to read though the whole file and count the amount of newlines you find while doing this. You commented some as "not effective" but thats the only way you can do that. A "line" is nothing else as a simple character inside the file. And to count that character you must have a look at every single character within the file. I'm sorry, but you have no choice. :-) |
|||
|
|
|
If the already posted answers aren't fast enough you'll probably have to look for a solution specific to your particular problem. For example if these text files are logs that are only appended to and you regularly need to know the number of lines in them you could create an index. This index would contain the number of lines in the file, when the file was last modified and how large the file was then. This would allow you to recalculate the number of lines in the file by skipping over all the lines you had already seen and just reading the new lines. |
|||
|
|
|
Try the unix "wc" command. I don't mean use it, I mean download the source and see how they do it. It's probably in c, but you can easily port the behavior to java. The problem with making your own is to account for the ending cr/lf problem. |
|||
|
|
|
This is about as efficient as it can get, buffered binary read, no string conversion,
|
|||
|
|
|
Quick and dirty, but it does the job:
|
|||
|
|
|
Do You need exact number of lines or only its approximation? I happen to process large files in parallel and often I don't need to know exact count of lines - I then revert to sampling. Split the file into ten 1MB chunks and count lines in each chunk, then multiply it by 10 and You'll receive pretty good approximation of line count. |
|||
|
|
|
Read the file line by line and increment a counter for each line until you have read the entire file. |
|||
|
|
|
Probably the fastest solution in pure Java would be to read the file as bytes using a NIO Channel into large ByteBuffer. Then using your knowledge of the file encoding scheme(s) count the encoded CR and/or NL bytes, per the relevant line separator convention. The keys to maximising throughput will be:
The actual code is too complicated for me to write on the fly. Besides, the OP is not asking for the fastest solution. |
|||
|
|
|
I found some solution for this, it might useful for you Below is the code snippet for, count the no.of lines from the file.
|
|||
|
|
|
My search for a simple example has createde one thats actually quite poor. calling read() repeadedly for a single character is less than optimal. see here for examples and measurements. |
|||||||||||||||||||
|