Android InputStream to Byte Array Convert InputStreamTOByte(InputStream in)

Here you can find the source of InputStreamTOByte(InputStream in)

Description

Input Stream TO Byte

Declaration

public static byte[] InputStreamTOByte(InputStream in)
        throws IOException 

Method Source Code

//package com.java2s;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;

public class Main {
    final static int BUFFER_SIZE = 4096;

    public static byte[] InputStreamTOByte(InputStream in)
            throws IOException {
        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;//from  w w  w . jav a 2 s.  c  om
        return outStream.toByteArray();
    }
}

Related

  1. readBytes(InputStream in)
  2. InputStreamTOByte(InputStream in)
  3. InputStreamTOByte(InputStream in)
  4. InputStreamTOByte(InputStream in)
  5. InputStreamTOByte(InputStream in)
  6. InputStreamTOByte(InputStream in)
  7. toByteArray(InputStream is)
  8. toByteArray(InputStream is)
  9. toByteArray(InputStream is)