我们可以将字节数组转换为Java中的InputStream吗?我一直在上网,但找不到。
我有一个具有InputStream作为参数的方法。
cph我拥有的InputStream 是base64编码的,因此我不得不使用
cph
BASE64Decoder decoder = new BASE64Decoder(); byte[] decodedBytes = decoder.decodeBuffer(cph);
现在如何decodedBytes再次转换为InputStream?
decodedBytes
InputStream
用途ByteArrayInputStream:
ByteArrayInputStream
InputStream is = new ByteArrayInputStream(decodedBytes);