Skip to content

Instantly share code, notes, and snippets.

@mmassaki
Created August 28, 2013 14:52
Show Gist options
  • Select an option

  • Save mmassaki/6366919 to your computer and use it in GitHub Desktop.

Select an option

Save mmassaki/6366919 to your computer and use it in GitHub Desktop.
// from: http://stackoverflow.com/a/5445161/1119197
static String convertStreamToString(java.io.InputStream is) {
java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A");
return s.hasNext() ? s.next() : "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment