我只想提取一个普通的zip文件,但它总是失败。
这是我现在使用的代码:

private File downloadPath = new File(Environment.getExternalStorageDirectory() + "/Test/file.zip");
private File unzipLoc = new File(Environment.getExternalStorageDirectory() + "/Test/");
        FileInputStream fin = new FileInputStream(downloadPath);
        ZipInputStream zin = new ZipInputStream(fin);
        ZipEntry ze = null;
        while ((ze = zin.getNextEntry()) != null)
        {
            FileOutputStream fout = new FileOutputStream(unzipLoc + ze.getName());
            for (int c = zin.read(); c != -1; c = zin.read())
            {
                fout.write(c);
            }

            zin.closeEntry();
            fout.close();
        }
        zin.close();

它在“zin.getNextEntry()”部分失败。
错误:java.util.zip.zipexception:无法读取版本
有什么想法吗?谢谢!

最佳答案

看起来你的zip文件比你的“解压库”更新了。
如果你读了资料来源:
ZipInputStream(搜索新的zipexception(“无法读取版本”))
它显示它检查zip文件的版本。然后查看Wikipedia它显示这是提取zip所需的最低版本。
检查zip文件并用较低版本的zip软件重新保存/zip文件,无需测试压缩
或者更新你的zip库(你不能像使用内部android zip库那样做)。

09-25 18:39