Android ByteArrayInputStream Create byteTOInputStream(byte[] in)

Here you can find the source of byteTOInputStream(byte[] in)

Description

byte TO Input Stream

Declaration

public static InputStream byteTOInputStream(byte[] in) throws Exception 

Method Source Code

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

import java.io.InputStream;

public class Main {

    public static InputStream byteTOInputStream(byte[] in) throws Exception {

        ByteArrayInputStream is = new ByteArrayInputStream(in);
        return is;
    }/*from  w  w w  . j  a va 2 s  . c  o  m*/
}

Related

  1. byteTOInputStream(byte[] in)
  2. byteTOInputStream(byte[] in)
  3. byteTOInputStream(byte[] in)
  4. byteToInputSteram(byte[] data)