由java.util.zip压缩的文件无法通过标准zip实用程序解压缩

时间:2011-11-18 18:38:29

标签: java android zip

我设法使用这段简单的代码在java中创建zip文件:

BufferedInputStream origin = null;
FileOutputStream dest = new FileOutputStream(zipFile);

ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(dest));
out.setMethod(ZipOutputStream.DEFLATED);
out.setLevel(5);

byte data[] = new byte[BUFFER];
FileInputStream fi = new FileInputStream(file);
origin = new BufferedInputStream(fi, BUFFER);

ZipEntry entry = new ZipEntry(file.getName());
out.putNextEntry(entry);

int count;
while ((count = origin.read(data, 0, BUFFER)) != -1) {
    out.write(data, 0, count);
}

out.closeEntry();
origin.close();
out.close();

已成功创建zip文件。但是,当我尝试使用WinZip或其他工具解压缩时,我收到错误:

Central and local directory mismatch for file "my_file" (general 
purpose flags - local:808 hex  central: 8 hex). 
Severe Error:  Local and central GPFlags values don't match.

真正奇怪的是,当我解压缩文件时,WinRAR和内部Win7 zip没有显示任何错误。

我做错了什么?有人有这个问题吗? 非常感谢!

2 个答案:

答案 0 :(得分:1)

必须是out.close缺失。

答案 1 :(得分:0)

我想你忘了关闭zipentry。

out.closeEntry();
origin.close();
out.close();