( InputStream ins )
| 100 | } |
| 101 | |
| 102 | public static String getStringFromStream( InputStream ins ) |
| 103 | throws IOException |
| 104 | { |
| 105 | return getStringFromStream( new InputStreamReader( ins ) ); |
| 106 | } |
| 107 | |
| 108 | public static String getStringFromStream( Reader reader ) throws IOException { |
| 109 | StringBuffer sb = new StringBuffer(); |
no test coverage detected