我有一个 zip 文件,解码后得到一个字节数组,现在我想用那个 byte[] 对象创建一个 FileInputStream 对象。我不想创建文件,而是将数据内容传递给 FileInputStream。有什么办法吗?
以下是代码:
byte[] decodedHeaderFileZip = decodeHeaderZipFile(headerExportFile);
FileInputStream fileInputStream = new FileInputStream(decodedHeaderZipFileString);
编辑:我想用 FileInputStream 构建一个 ZipInputStream 对象。