Here you can find the source of convertStreamToString(InputStream is)
public static String convertStreamToString(InputStream is) throws Exception
//package com.java2s; //License from project: Apache License import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; public class Main { public static String convertStreamToString(InputStream is) throws Exception { BufferedReader reader = new BufferedReader( new InputStreamReader(is)); StringBuilder sb = new StringBuilder(); String line = null;/*from www. ja v a 2 s.c o m*/ while ((line = reader.readLine()) != null) { sb.append(line).append("\n"); } reader.close(); return sb.toString(); } }