vote up 6 vote down star
2

If you have an java.io.InputStream object how should you process that object and produce a string.

flag
2  
Boy, I'm absolutely in love with Java, but this question comes up so often you'd think they'd just figure out that the chaining of streams is somewhat difficult and either make helpers to create various combinations or rethink the whole thing. – Bill K Nov 21 '08 at 17:16
You are right. I tend to use a set of helper classes that do it once for me, so I don't need keep referring to Google or even StackOverflow for the answer. In this case, I was away from my utility code and couldn't remember exactly how to do it. What better way to open my account on the site. – Johnny Maelstrom Nov 26 '08 at 11:21
1  
Yeah, it really shouldn't require so much boilerplate to do something as simple as read strings from a stream. It's not that difficult, just annoying. – Adam Jaskiewicz Dec 8 '08 at 20:19
@Adam: It really depends on what kind of Stream you're working with. For instance, System.console().readLine() (new in Java 6) is pretty easy. Same with BufferedReader's readLine(). The only hard part is when you don't know how many characters you need to read. – R. Bemrose Dec 8 '08 at 20:46

5 Answers

vote up 13 vote down check

A nice way to do this is using Apache commons IOUtils to copy the InputStream into a StringWriter... something like

StringWriter writer = new StringWriter();
IOUtils.copy(inputStream, writer);
String theString = writer.toString();

Alternatively, you could use ByteArrayOutputStream if you don't want to mix your Streams and Writers

link|flag
2  
I hope IOUtils takes an optional Charset (or at least the name of the encodding to use). Best not to leave this kind of thing to chance :) – Jon Skeet Nov 21 '08 at 17:10
Haha - of course it does! commons.apache.org/io/apidocs/…) – Harry Lime Nov 21 '08 at 17:11
IOUtils. Great suggestion. Thanks for this. – Johnny Maelstrom Nov 26 '08 at 11:21
vote up 1 vote down

How about:

import java.io.BufferedInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.IOException;    

public static String readInputStreamAsString(InputStream in) 
    throws IOException {

    BufferedInputStream bis = new BufferedInputStream(in);
    ByteArrayOutputStream buf = new ByteArrayOutputStream();
    int result = bis.read();
    while(result != -1) {
      byte b = (byte)result;
      buf.write(b);
      result = bis.read();
    }        
    return buf.toString();
}
link|flag
vote up 5 vote down

How about

String myString = IOUtils.toString(myInputStream, "UTF-8");

?

Of course, you could choose other character encodings besides UTF-8.

Also see: http://commons.apache.org/io/api-1.4/org/apache/commons/io/IOUtils.html#toString(java.io.InputStream,%20java.lang.String)

link|flag
vote up 7 vote down

Taking into account file one should first get a java.io.Reader instance. This can then be read and added to a StringBuilder (we don't need StringBuffer if we are not accessing it in multiple threads, and StringBuilder is faster). The trick here is that we work in blocks, and as such don't need other buffering streams. The block now is 64k, but it could be increased in size for a bit of performance gain.

final char[] buffer = new char[0x10000];
StringBuilder out = new StringBuilder();
Reader in = new InputStreamReader(is, "UTF-8");
int read;
do {
  read = in.read(buffer, 0, buffer.length);
  if (read>0) {
    out.append(buffer, 0, read);
  }
while (read>=0);
link|flag
vote up -4 vote down

This is a very easy question, so easy that a quick google would helped you fast, here one snippet of first hits:

 BufferedInputStream ib = new BufferedInputStream(is,1024*1024);
 StringBuffer sb = new StringBuffer();
 String temp = ib.readLine();
 while (temp !=null){
     sb.append (temp);
     sb.append ("\n");
     temp = ib.readLine();
    }
 s = sb.toString()

(already optimized with Stringbuffer)

link|flag
Sorry to nitpick, but I think this is using BufferedReader, not InputStream. – Harry Lime Nov 21 '08 at 17:05
You are right, first line got lost while copy and pasted, added it. – flolo Nov 21 '08 at 17:07
1  
It's also changing the original data - it's normalising line endings to \n. That may be what's desired, but I'd normally start with a solution which doesn't do this. – Jon Skeet Nov 21 '08 at 17:09
1  
Still not quite right - new BufferedReader(new InputStreamReader(is), buff-size)). BufferedInputStream doesn't have a 'readline' – Ken Gentle Nov 21 '08 at 17:11
Yes, this is easy, but the point of StackOverflow, I thought, was to be a comprehensive resource. If it's not answered already (which it wasn't), we must ask the question so that it is answered. Without prejudice ;-). – Johnny Maelstrom Nov 26 '08 at 11:25

Your Answer

Get an OpenID
or

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