gpt4 book ai didi

java - 无法使用 java 解压文件,但可以使用 7zip 解压文件

转载 作者:行者123 更新时间:2023-12-01 10:05:49 25 4
gpt4 key购买 nike

我正在尝试使用 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com