Tag: base64input

我们可以将一个字节数组转换成Java中的InputStream吗?

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