I need to read a large text file of around 5-6 GB line by line in java.
Please advice.
|
|
A common pattern is to use
You can read the data faster if you assume there is no character encoding. e.g. ASCII-7 but it won't make much difference. It is highly likely that what you do with the data will take much longer. |
|||||
|
|
Use the BufferedReader, it read, put into a buffer (obviously :-) ), and after discard the buffer:
|
|||||||||||||||
|
|
Look at this blog:
|
||||
|
|
|
You need to use the |
|||
|
|
|
Here is a sample with full error handling and supporting charset specification for pre-Java 7. With Java 7 you can use try-with-resources syntax, which makes the code cleaner. If you just want the default charset you can skip the InputStream and use FileReader.
Here is the Groovy version, with full error handling:
|
||||
|
|