Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to read a large text file of around 5-6 GB line by line in java.

Please advice.

share|improve this question
3  
@kamaci et. al. This question should not be marked as a duplicate. "Quickly read the last line" is not an alternative, and its debatable whether "Quickest way to read text-file line by line" is. The quickest way to do something is not necessarily the common way. Furthermore, the answers below include code, the most relevant alternative you list does not. This question is useful. It is currently the top google search result for "java read file line by line". Finally, its off putting to arrive at stack overflow and find that 1 in every 2 question is flagged for disposal. – Patrick Cullen Feb 6 at 3:47

6 Answers

A common pattern is to use

BufferedReader br = new BufferedReader(new FileReader(file));
String line;
while ((line = br.readLine()) != null) {
   // process the line.
}
br.close();

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.

share|improve this answer
What does this pattern look like with proper exception handling? I note that br.close() throws IOException, which seems surprising -- what could happen when closing a file that is opened for read, anyway? FileReader's constructor might throw a FileNotFound exception. – MikeB Mar 15 at 20:16
@MikeB In Java 7 you would add a try-with-resource block. Close is not expected to throw an exception, but some implementations might. I wouldn't expect BufferedReader is on of them. It is very rare to see developers add special handling for close(); – Peter Lawrey Mar 16 at 21:25

Use the BufferedReader, it read, put into a buffer (obviously :-) ), and after discard the buffer:

BufferedReader in = new BufferedReader(new FileReader(file));

while (in.ready()) {
  String s = in.readLine();
}
in.close();
share|improve this answer
1  
+0: do you want to skip the first character of every line? in.read() return an int – Peter Lawrey May 3 '11 at 11:05
To skip 1 char, use in.skip(1). Thank you about the in.read(), fixed :-) – Pih May 3 '11 at 11:09
in.read() still reads and discards the first character of each line. – Peter Lawrey May 3 '11 at 11:16
Now that I saw the "read", there should be ready :-) – Pih May 3 '11 at 11:18
3  
in.ready() only returns true if data is waiting to be read. This is almost always false, but doesn't indicate the stream has been closed. – Peter Lawrey May 3 '11 at 11:26
show 5 more comments

Look at this blog:

The buffer size may be specified, or the default size may be used. The default is large enough for most purposes.

// Open the file
FileInputStream fstream = new FileInputStream("textfile.txt");

// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));

String strLine;

//Read File Line By Line
while ((strLine = br.readLine()) != null)   {
  // Print the content on the console
  System.out.println (strLine);
}

//Close the input stream
in.close();
share|improve this answer

You can use Scanner class

Scanner sc=new Scanner(file);
sc.nextLine();
share|improve this answer

You need to use the readLine() method in class BufferedReader. Create a new object from that class and operate this method on him and save it to a string.

BufferRead API

share|improve this answer

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.

InputStream ins = null; // raw byte-stream
Reader r = null; // cooked reader
BufferedReader br = null; // buffered for readLine()
try {
    String s;
    if (true) {
        String data = "#foobar\t1234\n#xyz\t5678\none\ttwo\n";
        ins = new ByteArrayInputStream(data.getBytes());
    } else {
        ins = new FileInputStream("textfile.txt");
    }
    r = new InputStreamReader(ins, "UTF-8"); // leave charset out for default
    br = new BufferedReader(r);
    while ((s = br.readLine()) != null) {
        System.out.println(s);
    }
}
catch (Exception e)
{
    System.err.println(e.getMessage()); // handle exception
}
finally {
    if (br != null) { try { br.close(); } catch(Throwable t) { /* ensure close happens */ } }
    if (r != null) { try { r.close(); } catch(Throwable t) { /* ensure close happens */ } }
    if (ins != null) { try { ins.close(); } catch(Throwable t) { /* ensure close happens */ } }
}

Here is the Groovy version, with full error handling:

File f = new File("textfile.txt");
f.withReader("UTF-8") { br ->
    br.eachLine { line ->
        println line;
    }
}
share|improve this answer
+1 for the explicit usage of the character encoding. – Joop Eggen May 12 at 2:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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