0

我必须在内存中创建 ZIP 存档但是现在,我需要将它保存在磁盘中的真实 .zip 文件中。怎么做?伪代码:

public byte[] crtZipByteArray(ByteArrayInputStream data,ZipEntry entry) throws IOException{
     ByteArrayOutputStream zipout = new ByteArrayOutputStream(); 
    ZipOutputStream zos = new ZipOutputStream(zipout);
    byte[] buffer = new byte[1024];
    int len;
    zos.putNextEntry(entry);
    while ((len = data.read(buffer)) > 0) {
        zos.write(buffer, 0, len);
    }
    zos.closeEntry();

    zos.close();
    data.close();
    return zipout.toByteArray();
}
4

1 回答 1

0

替换ByteArrayOutputStream zipoutFileOutputStream zipout

如果您仍然需要返回字节数组作为方法结果,请使用 apache commonsTeeOutputStream来复制两个流的输出。

public byte[] crtZipByteArray(ByteArrayInputStream data,ZipEntry entry) throws IOException{
        ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream(); 
        OutputStream fileOut = new FileOutputStream("filename.zip");
        OutputStream teeOut = new TeeOutputStream(byteArrayOut, fileOut);
        ZipOutputStream zos = new ZipOutputStream(teeOut);
.....
}
于 2015-02-20T13:02:06.600 回答