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

If you have java.io.InputStream object, how should you process that object and produce a String?


Suppose I have an InputStream that contains text data, and I want to convert this to a String (for example, so I can write the contents of the stream to a log file).

What is the easiest way to take the InputStream and convert it to a String?

public String convertStreamToString(InputStream is) { 
    // ???
}
share|improve this question
230  
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
5  
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
13  
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
1  
@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. – Powerlord Dec 8 '08 at 20:46
2  
The answers to this question only work if you want to read the stream's contents fully (until it is closed). Since that is not always intended (http requests with a keep-alive connection won't be closed), these method calls block (not giving you the contents). – f1sh Jul 14 '10 at 13:32
show 5 more comments

22 Answers

up vote 388 down vote accepted

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, encoding);
String theString = writer.toString();

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

share|improve this answer
21  
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
4  
Haha - of course it does! commons.apache.org/io/apidocs/org/apache/commons/io/… – Harry Lime Nov 21 '08 at 17:11
1  
IOUtils. Great suggestion. Thanks for this. – Johnny Maelstrom Nov 26 '08 at 11:21
49  
You really, really, really should be using IOUtils.copy(inputStream, writer, encoding); unless you really, really, really know what you're doing, which people never do with character encoding related programming. Or in this case, IOUtils.toString(inputStream, encoding). Methods that use the platform default encoding are almost never correct to use, like every other method that gives different results depending on which machine/operating system/platform or version thereof it is run on. – Christoffer Hammarström Dec 17 '10 at 13:45
11  
I think the below answer (IOUtils.toString()) is simpler since there is no need for a StringWriter – Patrick Feb 1 '11 at 23:55
show 3 more comments

Here's a way using only standard Java library (note that the stream is not closed, YMMV).

public static String convertStreamToString(java.io.InputStream is) {
    java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A");
    return s.hasNext() ? s.next() : "";
}

I learned this trick from "Stupid Scanner tricks" article. The reason it works is because Scanner iterates over tokens in the stream, and in this case we separate tokens using "beginning of the input boundary" (\A) thus giving us only one token for the entire contents of the stream.

Note, if you need to be specific about the input stream's encoding, you can provide the second argument to Scanner constructor that indicates what charset to use (e.g. "UTF-8").

Hat tip goes also to Jacob, who once pointed me to the said article.

EDITED: Thanks to a suggestion from Patrick, made the function more robust when handling an empty input stream. One more edit: nixed try/catch, Patrick's way is more laconic.

share|improve this answer
17  
Very nice sdk one-liner. – Thomas Ahle Jul 12 '11 at 9:12
7  
Thank you sooo much for this answer =D Android doesn't come with the IOUtils library :/ so this was great =) – Paulina D. Dec 8 '11 at 22:55
26  
just one flaw in this one liner, if inputStream is empty, you get thrown a scanner exception. so for a little more robust version: Scanner scanner = new Scanner(is, "UTF-8").useDelimiter("\\A"); if (scanner.hasNext()) return scanner.next(); return ""; – Patrick Feb 16 '12 at 1:43
7  
Why this answer hasn't floated to the top is beyond me. – Tim Apr 10 '12 at 18:54
5  
Thanks - this is a way better answer than the currently accepted one! – randomstring Apr 29 '12 at 6:34
show 11 more comments

Apache commons allows:

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)

share|improve this answer
6  
IOUtils.toString is deprecated – landon9720 Jan 7 '10 at 0:15
43  
No it isn't. Only the version that takes a byte[] parameter is. – Sean Patrick Floyd Nov 16 '10 at 9:04
17  
This is the correct answer, +1 for considering the character encoding, which is critical. – Christoffer Hammarström Dec 17 '10 at 13:53
5  
@Guillaume Coté I guess the message here is that you never should be "fine with the default encoding", since you cannot be sure of what it is, depending on the platform the java code is run on. – Per Wiklander Feb 3 '11 at 21:54
4  
To save anyone the hassle of Googling - <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> </dependency> – Chris Mar 9 '12 at 12:04
show 4 more comments

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 size is parameterized for run-time performance optimization.

public static String slurp(final InputStream is, final int bufferSize)
{
  final char[] buffer = new char[bufferSize];
  final StringBuilder out = new StringBuilder();
  try {
    final Reader in = new InputStreamReader(is, "UTF-8");
    try {
      for (;;) {
        int rsz = in.read(buffer, 0, buffer.length);
        if (rsz < 0)
          break;
        out.append(buffer, 0, rsz);
      }
    }
    finally {
      in.close();
    }
  }
  catch (UnsupportedEncodingException ex) {
    /* ... */
  }
  catch (IOException ex) {
      /* ... */
  }
  return out.toString();
}
share|improve this answer
33  
I like how this works without adding more libraries to your project. – User1 Jan 12 '11 at 23:36
3  
This solution uses multibyte characters. The example uses the UTF-8 encoding that allows expression of the full unicode range (Including Chinese). Replacing "UTF-8" with another encoding would allow that encoding to be used. – Paul de Vrieze Dec 9 '11 at 23:11
6  
@User1 - I like using libraries in my code so I can get my job done faster. It's awesome when your managers say "Wow James! How did you get that done so fast?!". But when we have to spend time reinventing the wheel just because we have misplaced ideas about including a common, reusable, tried and tested utility, we're giving up time we could be spending furthering our project's goals. When we reinvent the wheel, we work twice as hard yet get to the finish line much later. Once we're at the finish line, there is no one there to congratulate us. When building a house, don't build the hammer too – jmort253 Jan 20 '12 at 1:05
2  
Sorry, after re-reading my comment, it comes off a little arrogant. I just think it's important to have a good reason to avoid libraries and that the reason is a valid one, which there very well could be :) – jmort253 Jan 20 '12 at 1:35
2  
@jmort253 If you would already use apache commons I would say, go for it. At the same time, there is a real cost to using libraries (as the dependency proliferation in many apache java libraries shows). If this would be the only use of the library, it would be overkill to use the library. On the other hand, determining your own buffer size(s) you can tune your memory/processor usage balance. – Paul de Vrieze May 22 '12 at 9:16
show 7 more comments

How about this?

InputStream in = /* your InputStream */;
InputStreamReader is = new InputStreamReader(in);
StringBuilder sb=new StringBuilder();
BufferedReader br = new BufferedReader(is);
String read = br.readLine();

while(read != null) {
    //System.out.println(read);
    sb.append(read);
    read =br.readLine();

}

return sb.toString();
share|improve this answer
26  
+1 for using pure java – Tarun Jan 6 '12 at 15:49
2  
Doesn't answer the question. This shows how to iterate over the lines in a stream, not how to read the entire stream into a string. – Andrew Mar 23 '12 at 15:11
4  
you can concat all string in to one String.that is simple..... – sampathpremarathna Mar 25 '12 at 14:34
3  
The thing is, you're first splitting into lines, and then undoing that. It's easier and faster to just read arbitrary buffers. – Paul de Vrieze Apr 20 '12 at 18:36
2  
Also, readLine does not distinguish between \n and \r, so you cannot reproduce the exact stream again. – delawen Sep 10 '12 at 8:08
show 1 more comment

If you are using Google-Collections/Guava you could do the following:

InputStream stream = ...
String content = CharStreams.toString(new InputStreamReader(stream, Charsets.UTF_8));
Closeables.closeQuietly(stream);

Note that the second parameter (i.e. Charsets.UTF_8) for the InputStreamReader isn't necessary, but it is generally a good idea to specify the encoding if you know it (which you should!)

share|improve this answer
2  
@harschware: Given the question was: "If you have java.io.InputStream object how should you process that object and produce a String?" I assumed that a stream is already present in the situation. – Sakuraba Apr 13 '11 at 9:41
You didn't explain your answer very well, and had extraneous variables; user359996 said the same thing as you, but much more clearly. – Uronym Sep 1 '11 at 22:10
it returns to me boxes instead of actual text characters. plz advise – Vik Nov 12 '11 at 13:20
1  
+1 for guava, -1 for not specifying the encoding of the input stream. eg. new InputStreamReader(stream, "UTF-8") – andras Jul 6 '12 at 11:01
Downvoting as doesn't close inputstream. – plasma147 Jan 3 at 14:46
show 2 more comments
private String readFully(InputStream inputStream)
        throws IOException {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    byte[] buffer = new byte[1024];
    int length = 0;
    while ((length = inputStream.read(buffer)) != -1) {
        baos.write(buffer, 0, length);
    }
    return new String(baos.toByteArray());
}
share|improve this answer
Works well on Android in comparison with other answers which work only in enterprise java. – vorrtex Jan 14 at 19:30
That's where it came from... My Android tools library :) – TacB0sS Jan 20 at 23:14
Crashed in Android with OutOfMemory error on the ".write" line, every time, for short strings. – Adam Apr 15 at 17:18

Here's the most elegant, pure-Java (no library) solution I came up with after some experimentation:

public static String fromStream(InputStream in) throws IOException
{
    BufferedReader reader = new BufferedReader(new InputStreamReader(in));
    StringBuilder out = new StringBuilder();
    String line;
    while ((line = reader.readLine()) != null) {
        out.append(line);
    }
    return out.toString();
}
share|improve this answer
+1 Elegant, Simple and does not require libraries. – Chris Noldus Apr 28 at 21:49

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();
}
share|improve this answer

As an alternative to the Commons libraries, Google's excellent guava-libraries let you do this fairly concisely; given an InputStream named inputStream:

import com.google.common.io.CharStreams;

CharStreams.toString( new InputStreamReader( inputStream ));
share|improve this answer
2  
Note this method is particularly convenient if, instead of an InputStream, you have a Reader. For example, if you're getting the body of an HTTP request via HttpServletRequest.getReader(), it's just CharStreams.toString( request.getReader() ). – user359996 Mar 24 '11 at 17:36

Here's more-or-less sampath's answer, cleaned up a bit and represented as a function:

String streamToString(InputStream in) throws IOException {
  StringBuilder out = new StringBuilder();
  BufferedReader br = new BufferedReader(new InputStreamReader(in));
  for(String line = br.readLine(); line != null; line = br.readLine()) 
    out.append(line);
  br.close();
  return out.toString();
}
share|improve this answer
Thanks for this solution without IOUtils. – Benjamin Piette Sep 12 '12 at 13:33
use a StringBuilder – trnl Sep 12 '12 at 15:05
Changed to use StringBuilder. Thanks @trnl. – TKH Sep 12 '12 at 18:38

If you can't use Commons IO (FileUtils/IOUtils/CopyUtils) here's an example using a BufferedReader to read the file line by line:

public class StringFromFile {
    public static void main(String[] args) /*throws UnsupportedEncodingException*/ {
        InputStream is = StringFromFile.class.getResourceAsStream("file.txt");
        BufferedReader br = new BufferedReader(new InputStreamReader(is/*, "UTF-8"*/));
        final int CHARS_PER_PAGE = 5000; //counting spaces
        StringBuilder builder = new StringBuilder(CHARS_PER_PAGE);
        try {
            for(String line=br.readLine(); line!=null; line=br.readLine()) {
                builder.append(line);
                builder.append('\n');
            }
        } catch (IOException ignore) { }
        String text = builder.toString();
        System.out.println(text);
    }
}

or if you want raw speed I'd propose a variation on what Paul de Vrieze suggested (which avoids using a StringWriter (which uses a StringBuffer internally) :

public class StringFromFileFast {
    public static void main(String[] args) /*throws UnsupportedEncodingException*/ {
        InputStream is = StringFromFileFast.class.getResourceAsStream("file.txt");
        InputStreamReader input = new InputStreamReader(is/*, "UTF-8"*/);
        final int CHARS_PER_PAGE = 5000; //counting spaces
        final char[] buffer = new char[CHARS_PER_PAGE];
        StringBuilder output = new StringBuilder(CHARS_PER_PAGE);
        try {
            for(int read = input.read(buffer, 0, buffer.length);
                    read != -1;
                    read = input.read(buffer, 0, buffer.length)) {
                output.append(buffer, 0, read);
            }
        } catch (IOException ignore) { }

        String text = output.toString();
        System.out.println(text);
    }
}
share|improve this answer
In order to make your code work, I had to use this.getClass().getClassLoader().getResourceAsStream() (using Eclipse with a maven project) – greuze Jan 24 '12 at 12:27

If you were feeling adventurous, you could mix Scala and Java and end up with this:

scala.io.Source.fromInputStream(is).mkString("")

Mixing Java and Scala code and libraries has it's benefits.

See full description here: Idiomatic way to convert an InputStream to a String in Scala

share|improve this answer
This is a pretty elegant solution. – Christopher Perry Jan 5 at 19:22
+1 for scala :) – Nerrve Mar 27 at 11:20

I ran some timing tests because time matters, always.

I attempted to get the response into a String 3 different ways. (shown below)
I left out try/catch blocks for the sake readability.

To give context, this is the preceding code for all 3 approaches:

String response;
String url = "www.blah.com/path?key=value";
GetMethod method = new GetMethod(url);
int status = client.executeMethod(method);

1)

response = method.getResponseBodyAsString();

2)

InputStream resp = method.getResponseBodyAsStream();
InputStreamReader is=new InputStreamReader(resp);
BufferedReader br=new BufferedReader(is);
String read = null;
StringBuffer sb = new StringBuffer(read);
while((read = br.readLine()) != null) {
sb.append(read);
}
response = sb.toString();

3)
InputStream iStream = method.getResponseBodyAsStream();
StringWriter writer = new StringWriter();
IOUtils.copy(iStream, writer, "UTF-8");
response = writer.toString();

So, after running 500 tests on each approach with the same request/response data, here are the numbers. Once again, these are my findings and your findings may not be exactly the same, but I wrote this to give some indication to others of the efficiency differences of these approaches.

Ranks:
Approach #1
Approach #3 - 2.6% slower than #1
Approach #2 - 4.3% slower than #1

Any of these approaches is an appropriate solution to the grabbing a response and creating a String from it.

share|improve this answer
1  
2) contains an error, it adds always "null" at the end of the string as you are always makeing one more step then necessary. Performance will be the same anyway I think. This should work: String read = null; StringBuffer sb = new StringBuffer(); while((read = br.readLine()) != null) { sb.append(read); } – LukeSolar Oct 21 '11 at 13:32
import java.io.ByteArrayOutputStream;
import java.io.InputStream;

...

InputStream is = ....
ByteArrayOutputStream baos = new ByteArrayOutputStream(8192);
byte[] buffer = new byte[8192];
int count = 0;
try {
  while ((count = is.read(buffer)) != -1) {
    baos.write(buffer, 0, count);
  }
}
finally {
  try {
    is.close();
  }
  catch (Exception ignore) {
  }
}

String charset = "UTF-8";
String inputStreamAsString = baos.toString(charset);
share|improve this answer
Please give a description on what you are trying to accomplish. – Ragunath Jawahar Nov 2 '12 at 12:58

make sure to close the streams at end if you use Stream Readers

    private String readStream(InputStream iStream) throws IOException {
        //build a Stream Reader, it can read char by char
        InputStreamReader iStreamReader = new InputStreamReader(iStream);
        //build a buffered Reader, so that i can read whole line at once
        BufferedReader bReader = new BufferedReader(iStreamReader);
        String line = null;
        StringBuilder builder = new StringBuilder();
        while((line = bReader.readLine()) != null) {  //Read till end
            builder.append(line);
        }
        bReader.close();         //close all opened stuff
        iStreamReader.close();
        iStream.close();
        return builder.toString();
    }
share|improve this answer

Well you can program it for yourself.. it's not complicated..

String Inputstream2String (InputStream is) throws IOException 
    {
        final int PKG_SIZE = 1024;
        byte[] data = new byte [PKG_SIZE];
        StringBuffer buffer = new StringBuffer(PKG_SIZE * 10);
        int size;

        size = is.read(data, 0, data.length);
        while (size > 0)
        {
            String str = new String(data, 0, size);
            buffer.append(str);
            size = is.read(data, 0, data.length);
        }
        return buffer.toString();
    }
share|improve this answer

First ,you have to know the encoding of string that you want to convert.Because the java.io.InputStream operates an underlying array of bytes,however,a string is composed by a array of character that needs an encoding, e,g. UTF-8,the JDK will take the default encoding that is taken from System.getProperty("file.encoding","UTF-8");

byte[] bytes=new byte[inputStream.available()];
inputStream.read(bytes);
String s = new String(bytes);

If inputStream's byte array is very big, you could do it in loop.

:EOF

share|improve this answer
4  
From the javadocs: Note that while some implementations of InputStream will return the total number of bytes in the stream, many will not. It is never correct to use the return value of this method to allocate a buffer intended to hold all data in this stream. – tylermac Oct 6 '11 at 16:09
This is a bad idea! Don't be burnt by misunderstanding what available() gives you. – Drew Noakes Jan 1 at 3:42

The below code worked for me.

    URL url = MyClass.class.getResource("/" + configFileName);
    BufferedInputStream bi = (BufferedInputStream) url.getContent();
    byte[] buffer = new byte[bi.available() ];
    int bytesRead = bi.read(buffer);
    String out = new String(buffer);

Please note, according to Java docs, the available() method might not work with InputStream but always works with BufferedInputStream. In case you don't want to use available() method we can always use the below code

    URL url = MyClass.class.getResource("/" + configFileName);
    BufferedInputStream bi = (BufferedInputStream) url.getContent();
    File f = new File(url.getPath());
    byte[] buffer = new byte[ (int) f.length()];
    int bytesRead = bi.read(buffer);
    String out = new String(buffer);

I am not sure if there will be any encoding issues. Please comment, if there will be any issues with the code

share|improve this answer
2  
The whole point of using InputStream is, that a) you don't know the length of the complete stream (which bails out anything depending on available) and b) the stream can be anything - a file, a socket, something internal (which bails out anything based on File.size()). Regarding available: This will cut off data if the stream is longer than the buffer size. – A.H. Jul 24 '12 at 10:26
  InputStream IS=new URL("http://www.petrol.si/api/gas_prices.json").openStream();   

  ByteArrayOutputStream BAOS=new ByteArrayOutputStream();
  IOUtils.copy(IS, BAOS);
  String d= new String(BAOS.toByteArray(),"UTF-8");           

System.out.println(d);
share|improve this answer
See the commet by ChristofferHammarström in the answer by HarryLime. – Martin Schröder May 15 at 15:23

Quick and easy:

String result = (String)new ObjectInputStream( inputStream ).readObject();
share|improve this answer
I get java.io.StreamCorruptedException: invalid stream header – XXL Jul 20 '12 at 11:13
ObjectInputStream is about deserialization, and the stream have to respect the serialization protocol to work, which may not always true in the context of this question. – Brice Apr 3 at 14:17

Try this one as well

  StringBuilder response = new StringBuilder();
  int value = 0;
  boolean active = true;
  while (active) {
        value = is.read();
        if (value == -1) {
            throw new IOException("End of Stream");
        } else if (value != '\n') {
            response.append((char) value);
            continue;
        } else {
            active = false;
        }
    }
    return response.toString();
share|improve this answer
4  
Not only is this a terrible response, it doesn't work for non-ansi encodings. – Stefan Kendall Sep 28 '11 at 21:25

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.