If I start with a java.io.InputStream, what's the easiest way to read the entire stream out into a String (assuming utf-8)?
This should be pretty easy but I'm mostly a C# person and google is failing me on this. Thanks.
|
If I start with a java.io.InputStream, what's the easiest way to read the entire stream out into a String (assuming utf-8)? This should be pretty easy but I'm mostly a C# person and google is failing me on this. Thanks. |
|||||
|
|
Depending on what licenses you are comfortable with, it's a one liner with Jakarta-Commons IO library. |
|||||||||||||||
|
|
Do specify the character encoding. Do not waste code, introduce bugs, and slow execution with a Here is an example. You could parameterize it with a buffer size, encoding, etc.
|
|||
|
Using Commons-IO is likely to be the best option. For your interest, another approach is to copy all the bytes and then convert it into a String.
|
|||
|
|
|
Reading/writing from streams is remarkably painful in Java.
|
|||||||||||||
|