Apache Commons IO has a nice convenience method IOUtils.toString() to read an InputStream to a String.

Since I am trying to move away from Apache Commons and to Guava: is there an equivalent in Guava? I looked at all classes in the com.google.common.io package and I couldn't find anything nearly as simple.

Edit: I understand and appreciate the issues with charsets. It just so happens that I know that all my sources are in ASCII (yes, ASCII, not ANSI etc.), so in this case, encoding is not an issue for me.

link|improve this question

2  
About the charsets: It's still good for a library to require you to specify that you know what charset you're dealing with (e.g. Charsets.US_ASCII) rather than letting you say "eh, whatever charset I guess?" which all to many people seem happy to do. Especially since Java doesn't use a default that makes sense, like UTF-8. – ColinD Nov 15 '10 at 16:46
I know. That's why I am using UTF-8 as default version in my own answer. – Sean Patrick Floyd Nov 15 '10 at 16:54
feedback

4 Answers

up vote 16 down vote accepted

If you've got a Readable you can use CharStreams.toString(Readable). So you can probably do the following:

String string = CharStreams.toString( new InputStreamReader( inputStream, "UTF-8" ) );

Forces you to specify a character set, which I guess you should be doing anyway.

link|improve this answer
4  
Actually, I'll use a combination of your and Jon Skeet's answers: ` CharStreams.toString(new InputStreamReader(supplier.get(), Charsets.UTF_8))` – Sean Patrick Floyd Nov 15 '10 at 15:25
Yep, lots of ways to combine the options! – Calum Nov 15 '10 at 15:43
2  
@S.P.Floyd: If you have an InputSupplier<InputStream> I'd strongly recommend using CharStreams.newReaderSupplier(supplier, Charsets.UTF_8) rather than new InputStreamReader. The reason is that when given the InputStreamReader, toString will not close that Reader (and thus not the underlying stream!). By using an InputSupplier for the Reader, the toString method will handle closing the Reader for you. – ColinD Nov 15 '10 at 16:10
@Colin my brain hurts. Could you write that as an answer? – Sean Patrick Floyd Nov 15 '10 at 16:14
feedback

You stated in your comment on Calum's answer that you were going to use

CharStreams.toString(new InputStreamReader(supplier.get(), Charsets.UTF_8))

This code is problematic because the overload CharStreams.toString(Readable) states:

Does not close the Readable.

This means that your InputStreamReader, and by extension the InputStream returned by supplier.get(), will not be closed after this code completes.

If, on the other hand, you take advantage of the fact that you appear to already have an InputSupplier<InputStream> and used the overload CharStreams.toString(InputSupplier<R extends Readable & Closeable>), the toString method will handle both the creation and closing of the Reader for you.

This is exactly what Jon Skeet suggested, except that there isn't actually any overload of CharStreams.newReaderSupplier that takes an InputStream as input... you have to give it an InputSupplier:

InputSupplier<? extends InputStream> supplier = ...
InputSupplier<InputStreamReader> readerSupplier = 
    CharStreams.newReaderSupplier(supplier, Charsets.UTF_8);

// InputStream and Reader are both created and closed in this single call
String text = CharStreams.toString(readerSupplier);

The point of InputSupplier is to make your life easier by allowing Guava to handle the parts that require an ugly try-finally block to ensure that resources are closed properly.

Edit: Personally, I find the following (which is how I'd actually write it, was just breaking down the steps in the code above)

String text = CharStreams.toString(
    CharStreams.newReaderSupplier(supplier, Charsets.UTF_8));

to be far less verbose than this:

String text;
InputStreamReader reader = new InputStreamReader(supplier.get(), 
    Charsets.UTF_8);
boolean threw = true;
try {
  text = CharStreams.toString(reader);
  threw = false;
}
finally {
  Closeables.close(reader, threw);
}

Which is more or less what you'd have to write to handle this properly yourself.

link|improve this answer
Thanks for the great info (+1). But this is very verbose. I think that combining the accepted answer with Closeables.closeQuietly() is easier. – Sean Patrick Floyd Nov 15 '10 at 16:47
P.S.: see my own answer – Sean Patrick Floyd Nov 15 '10 at 16:53
@CollinD: I have used your method in one of my answer.Please have a look at the code and tell me if this is the right way to use InputSupplier. – Emil Nov 16 '10 at 6:21
@ColinD, if the inputStream is coming from inside of a doPost servlet, is there any point in closing it? (or worrying about closing it) – Blankman Apr 22 at 19:43
feedback

Nearly. You could use something like this:

InputSupplier<InputStreamReader> readerSupplier = CharStreams.newReaderSupplier
    (streamSupplier, Charsets.UTF_8);
String text = Charsets.toString(readerSupplier);

Personally I don't think that IOUtils.toString(InputStream) is "nice" - because it always uses the default encoding of the platform, which is almost never what you want. There's an overload which takes the name of the encoding, but using names isn't a great idea IMO. That's why I like Charsets.*.

EDIT: Not that the above needs an InputSupplier<InputStream> as the streamSupplier. If you've already got the stream you can implement that easily enough though:

InputSupplier<InputStream> supplier = new InputSupplier<InputStream>() {
    @Override public InputStream get() {
        return stream;
    }
};
link|improve this answer
Jon, is stream via request.getInputStream? Also, will yours close the stream like ColinD mentioned in @Calum's answer? – Blankman Apr 22 at 16:24
Oh, and it a servlet doPost environment, should I be closing the stream anyhow? – Blankman Apr 22 at 16:27
@Blankman: Ah, so that's your context - it wasn't at all clear from your question. It doesn't matter too much whether you close a request stream, but I'd generally do so. I'll edit this answer though - there's no such overload, it seems. – Jon Skeet Apr 22 at 16:29
wait, it wasn't my question, I just found this via G as I am reading a posted file from the stream. it seems you are doing the method that closes the underlying stream since you used the newReaderSupplier. – Blankman Apr 22 at 16:34
I'm just doing this now: String payLoad = CharStreams.toString(new InputStreamReader(request.getInputStream(), "UTF-8")); – Blankman Apr 22 at 16:35
show 3 more comments
feedback

Based on the accepted answer, here is a utility method that mocks the behavior of IOUtils.toString() (and an overloaded version with a charset, as well). This version should be safe, right?

public static String toString(final InputStream is) throws IOException{
    return toString(is, Charsets.UTF_8);
}


public static String toString(final InputStream is, final Charset cs)
throws IOException{
    Closeable closeMe = is;
    try{
        final InputStreamReader isr = new InputStreamReader(is, cs);
        closeMe = isr;
        return CharStreams.toString(isr);
    } finally{
        Closeables.closeQuietly(closeMe);
    }
}
link|improve this answer
Looks pretty much fine to me. Guava's IO stuff does work best if you learn to think in terms of reusable input suppliers rather than 1-shot streams and readers (when possible), but I guess since you're converting existing IOUtils code that would be a big change. – ColinD Nov 15 '10 at 17:00
feedback

Your Answer

 
or
required, but never shown

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