我想提取一个普通的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库(你不能使用内部的android zip库).
标签:unzip,android,net,file,zip
来源: https://codeday.me/bug/20190723/1515289.html