Here you can find the source of getStream(byte[] bytes)
public static InputStream getStream(byte[] bytes)
//package com.java2s; //License from project: Apache License import java.io.ByteArrayInputStream; import java.io.InputStream; public class Main { public static InputStream getStream(byte[] bytes) { return new ByteArrayInputStream(bytes); }// w w w . ja va 2 s . c om }