vote up 10 vote down star
16

I've been using this idiom for some time now. And it seems to be the most wide spread at least in the sites I've visited.

Does anyone have a better/different way to read a file into a string in Java.

Thanks

 private String readFile( String file ) throws IOException {
    BufferedReader reader = new BufferedReader( new FileReader (file));
    String line  = null;
    StringBuilder stringBuilder = new StringBuilder();
    String ls = System.getProperty("line.separator");
    while( ( line = reader.readLine() ) != null ) {
        stringBuilder.append( line );
        stringBuilder.append( ls );
    }
    return stringBuilder.toString();
 }
flag

1  
Can anyone explain me in a very simple way what's with the NIO? Each time I read about itI get lost in the nth mention of channel :( – Oscar Reyes Nov 28 '08 at 18:33
do remember that it's not guaranteed that the line separator in the file isn't necessary the same as the system's line separator. – Henrik Paul Nov 28 '08 at 18:35
mmhh good point wolfie!! – Oscar Reyes Nov 28 '08 at 18:37

8 Answers

vote up 12 vote down check

In general, you should specify the character encoding to use when converting the bytes of a file to text. There are some special cases when you just want to use the platform default, but they are rare, and you should be able to explicitly justify why this is okay.

Anyway, here's an efficient way to it:

private static String readFile(String path) throws IOException {
  FileInputStream stream = new FileInputStream(new File(path));
  try {
    FileChannel fc = stream.getChannel();
    MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
    /* Instead of using default, pass in a decoder. */
    return Charset.defaultCharset().decode(bb).toString();
  }
  finally {
    stream.close();
  }
}
link|flag
Quite interesting. What does the channel means. I know that is to avoid block the "thread?" They can be bidirectional ( or that's what I understood ) But, in more simple word, what are they? Can you elaborate further? – Oscar Reyes Nov 28 '08 at 19:07
In many ways, a ReadableByteChannel is like an InputStream, and WritableByteChannel is like an OutputStream. Many concrete Channels implement both of these interfaces, so one object is bi-directional. Some channels (SocketChannel) support non-blocking IO, but this isn't true of all channels. – erickson Nov 28 '08 at 19:11
Do you know the time- and memory-efficiencies of this idiom, or can at least estimate? It's a beautiful idiom! – Beau Martínez Jun 17 at 20:00
Technically speaking, it's O(n) in time and space. Qualitatively, due the immutability requirement of Strings, it's pretty hard on memory; temporarily there are two copies of the char data in memory, plus the room for the encoded bytes. Assuming some single-byte encoding, it will (temporarily) require 5 bytes of memory for each character in the file. Since the question asks specifically for a String, that's what I show, but if you can work with the CharBuffer returned by "decode", the memory requirement is much less. Time-wise, I don't think you'll find anything faster in the core Java libs. – erickson Jun 17 at 20:16
Possible typo? NIO has a Charset (not CharSet) class called java.nio.charset.Charset. Is this what CharSet should have been? – Jonathan Wright 23 hours ago
vote up 0 vote down

There is a variation on the same theme that uses a for loop, instead of a while loop, to limit the scope of the line variable. Whether it's "better" is a matter of personal taste.

for(String line = reader.readLine(); line != null; line = reader.readLine()) {
    stringBuilder.append(line);
    stringBuilder.append(ls);
}
link|flag
vote up 3 vote down

That code will normalize line breaks, which may or may not be what you really want to do.

Here's an alternative which doesn't do that, and which is (IMO) simpler to understand than the NIO code (although it still uses java.nio.charset.Charset):

public static String readFile(String file, String csName)
            throws IOException {
    Charset cs = Charset.forName(csName);
    return readFile(file, cs);
}

public static String readFile(String file, Charset cs)
            throws IOException {
    // No real need to close the BufferedReader/InputStreamReader
    // as they're only wrapping the stream
    FileInputStream stream = new FileInputStream(file);
    try {
        Reader reader = new BufferedReader(new InputStreamReader(stream, cs));
        StringBuilder builder = new StringBuilder();
        char[] buffer = new char[8192];
        int read;
        while ((read = reader.read(buffer, 0, buffer.length)) > 0) {
            builder.append(buffer, 0, read);
        }
        return builder.toString();
    } finally {
        // Potential issue here: if this throws an IOException,
        // it will mask any others. Normally I'd use a utility
        // method which would log exceptions and swallow them
        stream.close();
    }        
}
link|flag
Which one is "that" code? – Oscar Reyes Nov 28 '08 at 20:00
The code in the question. – Jon Skeet Nov 28 '08 at 20:01
vote up 1 vote down

If you're looking for an alternative that doesn't involve a 3rd party library (e.g. commons IO), you can use the Scanner class

private String readFile(String file) throws IOException {
    StringBuilder stringBuilder = new StringBuilder();
    Scanner scanner = new Scanner(file);

    try {
        while(scanner.hasNextLine()) {        
            stringBuilder.append(scanner.nextLine() + "\n");
        }
    } finally {
        scanner.close()
    }
    return stringBuilder.toString();
}
link|flag
I think this is the best way. Check out java.sun.com/docs/books/… – Tarski Nov 28 '08 at 19:19
Doesn't this drops line terminators? Let me try ... – Oscar Reyes Nov 28 '08 at 19:38
I've updated the code to add the line terminators – Don Nov 28 '08 at 21:00
1  
The Scanner constructor that accepts a String doesn't treat the string as the name of a file to read, but as the text to be scanned. I make that mistake all the time. :-/ – Alan Moore Nov 29 '08 at 9:10
vote up 1 vote down

Java attempts to be extremely general and flexible in all it does. As a result, something which is relatively simple in a scripting language (your code would be replaced with "open(file).read()" in python) is a lot more complicated. There doesn't seem to be any shorter way of doing it, except using an external library (like Willi aus Rohr mentioned). Your options:

  • Use an external library.
  • Copy this code into all your projects.
  • Create your own mini-library which contains functions you use often.

Your best bet is probably the 2nd one, as it has the least dependencies.

link|flag
Yeap. It makes the "high" level language take a different meaning. Java is high level compared with C but low compared with Python or Ruby – Oscar Reyes Nov 28 '08 at 19:36
vote up 6 vote down

Commons IOUtils:

http://commons.apache.org/io/api-1.4/index.html?org/apache/commons/io/IOUtils.html

public static String readFileToString(File file)
                           throws IOException

Reads the contents of a file into a String using the default encoding for the VM. The file is always closed.

Parameters:
    file - the file to read, must not be null 
Returns:
    the file contents, never null 
Throws:
    IOException - in case of an I/O error
Since:
    Commons IO 1.3.1

Edit by Oscar Reyes

I've found the code used ( indirectly ) by that class:

IOUtils.java under Apache Licence 2.0

    public static long copyLarge(InputStream input, OutputStream output)
           throws IOException {
       byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
       long count = 0;
       int n = 0;
       while (-1 != (n = input.read(buffer))) {
           output.write(buffer, 0, n);
           count += n;
       }
       return count;
   }

Very similar to the one use by Ritche_W

link|flag
I don't find that method in the URL you provide. – Oscar Reyes Nov 28 '08 at 18:52
1  
It's in the class org.apache.commons.io.FileUtils – ckarmann Nov 28 '08 at 19:04
vote up -1 vote down

You could try:

FileInputStream input = new FileInputStream(filePath);

byte[] fileData = new byte[input.available()];

input.read(fileData);
input.close();

return new String(fileData);

I'm not sure what problems might occur with the bytes and character sets etc, but it works for me.

link|flag
I have always wondered, is it possible that input.available() return less bytes count than those in the file; I guess with big files. – Oscar Reyes Nov 28 '08 at 18:49
Probably. Like I said, it works for me. Perhaps there is a more suitable java.io.File method (something like getLength()?) which could provide a more reliable value. – Richie_W Nov 28 '08 at 18:53
Given the doco for read(byte[]) this is very risky code. What if the file is on a network share or SAN? Then you might get an available count of less than the file size. You need to use a readFull() method and File.length(). – Software Monkey Nov 28 '08 at 18:58
Like I said, it works for me and my purposes. It is concise and I've yet to encounter a problem with it. That said, there are probably a hundred better ways to do it (just, this method has less code). – Richie_W Nov 28 '08 at 19:03
1  
Actually this is very similar the way the library posted by Willi aus Rohr. Don't see why the downvote – Oscar Reyes Nov 28 '08 at 19:15
show 5 more comments
vote up 0 vote down

Better? I don't know. Different? Sure. Instead of reading line by line, you can read char by char, with an InputStream instead of a Reader.

link|flag
That would read byte by byte. Streams are for binary data, readers are for text data. – Jon Skeet Nov 28 '08 at 19:57

Your Answer

Get an OpenID
or

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