How to convert byte[] to InputStream? [duplicate]
Possible Duplicate:
Can we convert a byte array into an InputStream in Java?
There is a way to convert an array of bytes (byte[]
) to InputStream in Java? I looked at some methods in Apache Commons IO, but found nothing.
Solution 1:
ByteArrayInputStream
extends InputStream
:
InputStream myInputStream = new ByteArrayInputStream(myBytes);
Solution 2:
Should be easy to find in the javadocs...
byte[] byteArr = new byte[] { 0xC, 0xA, 0xF, 0xE };
InputStream is = new ByteArrayInputStream(byteArr);