Android InputStream to String Convert InputStreamTOString(InputStream in, String encoding)

Here you can find the source of InputStreamTOString(InputStream in, String encoding)

Description

Input Stream TO String

Declaration

public static String InputStreamTOString(InputStream in, String encoding)
        throws Exception 

Method Source Code

//package com.java2s;

import java.io.ByteArrayOutputStream;

import java.io.InputStream;

public class Main {
    final static int BUFFER_SIZE = 4096;

    public static String InputStreamTOString(InputStream in)
            throws Exception {

        ByteArrayOutputStream outStream = new ByteArrayOutputStream();
        byte[] data = new byte[BUFFER_SIZE];
        int count = -1;
        while ((count = in.read(data, 0, BUFFER_SIZE)) != -1)
            outStream.write(data, 0, count);

        data = null;/* w  ww.  j ava2 s .co m*/
        return new String(outStream.toByteArray(), "ISO-8859-1");
    }

    public static String InputStreamTOString(InputStream in, String encoding)
            throws Exception {

        ByteArrayOutputStream outStream = new ByteArrayOutputStream();
        byte[] data = new byte[BUFFER_SIZE];
        int count = -1;
        while ((count = in.read(data, 0, BUFFER_SIZE)) != -1)
            outStream.write(data, 0, count);

        data = null;
        return new String(outStream.toByteArray(), "ISO-8859-1");
    }
}

Related

  1. InputStreamTOString(InputStream in)
  2. InputStreamTOString(InputStream in)
  3. InputStreamTOString(InputStream in)
  4. InputStreamTOString(InputStream in)
  5. InputStreamTOString(InputStream in, String encoding)
  6. InputStreamTOString(InputStream in, String encoding)
  7. InputStreamTOString(InputStream in, String encoding)
  8. InputStreamTOString(InputStream in, String encoding)
  9. InputStreamTOString(InputStream in, String encoding)