Possible Duplicates:
How do I convert an InputStream to a String in Java?
In Java how do a read an input stream in to a string?
I have an InputSteam and need to simply get a single simple String with the complete contents.
How is this done in Java?
Here is a modification of Gopi’s answer that doesn’t have the line ending problem and is also more effective as it doesn’t need temporary String objects for every line and avoids the redundant copying in BufferedReader and the extra work in readLine().