【发布时间】:2015-02-20 12:49:52
【问题描述】:
我必须在内存中创建 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();
}
【问题讨论】:
标签: java memory zip zipoutputstream