views:

587

answers:

2

Can we convert a byte array into an InputStream in Java? I have been looking on the internet but couldn't find it.

I have a method that has an InputStream as argument.

The InputStream cph I have is base64 encoded so I had to decode it using

BASE64Decoder decoder = new BASE64Decoder();
byte[] decodedBytes = decoder.decodeBuffer(cph);

Now how do I convert decodedBytes again to InputStream?

+19  A: 

Use ByteArrayInputStream:

InputStream is = new ByteArrayInputStream(decodedBytes);
DR
+1 - Enjoy your new 10K status :)
Yuval A
+1  A: 

If you use Robert Harder's Base64 utility, then you can do:

InputStream is = new Base64.InputStream(cph);

Or with sun's JRE, you can do:

InputStream is = new
com.sun.xml.internal.messaging.saaj.packaging.mime.util.BASE64DecoderStream(cph)

However don't rely on that class continuing to be a part of the JRE, or even continuing to do what it seems to do today. Sun say not to use it.

There are other Stack Overflow questions about Base64 decoding, such as this one.

Stephen Denne
Don't use the sun class it's private and should not be used as it can change at anytime.
mP
I'll edit my answer to include dire warnings. The code in the question is already using `BASE64Decoder` which is presumably `sun.misc.BASE64Decoder`
Stephen Denne