作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 java 解压缩文件,但以下代码不会进入 while 循环,因为“ze”为空。然而,我可以使用 7zip 应用程序解压缩同一个文件。有人可以告诉我为什么会发生这种情况吗?
尝试{
//get the zip file content
ZipInputStream zis =
new ZipInputStream(new FileInputStream(zipFile));
//get the zipped file list entry
ZipEntry ze = zis.getNextEntry();
while(ze!=null){
String fileName = ze.getName();
File newFile = new File(outputFolder + File.separator + fileName);
System.out.println("file unzip : "+ newFile.getAbsoluteFile());
//create all non exists folders
//else you will hit FileNotFoundException for compressed folder
new File(newFile.getParent()).mkdirs();
FileOutputStream fos = new FileOutputStream(newFile);
int len;
while ((len = zis.read(buffer)) > 0) {
fos.write(buffer, 0, len);
}
fos.close();
ze = zis.getNextEntry();
}
zis.closeEntry();
zis.close();
System.out.println("Done");
}catch(IOException ex){
ex.printStackTrace();
}
最佳答案
这里的javadoc:https://docs.oracle.com/javase/7/docs/api/java/util/zip/ZipInputStream.html表示如果没有更多条目,getNextEntry() 将返回 null。检查您的 zip 文件中是否确实包含文件或者是否为空。
我使用包含文件的 zip 尝试了您的代码,并且运行正确。我用一个空的 zip 文件进行了尝试,空文件的 ze 为 null,因此它没有进入 while 循环。
关于java - 无法使用 java 解压文件,但可以使用 7zip 解压文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36489378/
我是一名优秀的程序员,十分优秀!