Android InputStream to String Convert streamToString(InputStream is)

Here you can find the source of streamToString(InputStream is)

Description

stream To String

Declaration

private static String streamToString(InputStream is) throws IOException 

Method Source Code

//package com.java2s;
import java.io.BufferedReader;

import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;

public class Main {
    private static String streamToString(InputStream is) throws IOException {
        String str = "";

        if (is != null) {
            StringBuilder sb = new StringBuilder();
            String line;/* ww  w .  j a  va  2 s .  c  o  m*/

            try {
                BufferedReader reader = new BufferedReader(
                        new InputStreamReader(is));

                while ((line = reader.readLine()) != null) {
                    sb.append(line);
                }

                reader.close();
            } finally {
                is.close();
            }

            str = sb.toString();
        }

        return str;
    }
}

Related

  1. convertStreamToString(InputStream is)
  2. convertStreamToString(InputStream is)
  3. convertStreamToString(InputStream is)
  4. convertStreamToString(java.io.InputStream is)
  5. convertStreamToString(java.io.InputStream is)
  6. stringFromInputStream(InputStream is)
  7. getStringFromInputStream(InputStream is)