gpt4 book ai didi

java - 使用 Java 创建的 ZIP 文件在使用 Windows 资源管理器打开时显示为空

转载 作者:行者123 更新时间:2023-11-30 08:23:21 24 4
gpt4 key购买 nike

以下代码用于压缩普通文本文件。当我使用 WinRaR 提取时,它会正确显示内容,但是当我使用 Windows 资源管理器打开时,它是空的,没有列出任何文件。我使用的是 Windows 7 Enterprise(64 位)操作系统。知道为什么它没有在 Windows 资源管理器中列出吗?提前致谢。

File file = new File("F:\\sample.txt");
byte[] buf = new byte[1024];
String outFilename = "F:\\zipped_sample.zip";
try {
ZipOutputStream out = new ZipOutputStream(new FileOutputStream(outFilename));
FileInputStream in = new FileInputStream(file);
out.putNextEntry(new ZipEntry(file.toString()));
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
out.flush();
}
out.closeEntry();
out.close();
in.close();
} catch (Exception e) {
// log exception here
}

最佳答案

ZipEntry 构造函数采用名称,但您通过执行 file.toString(); 为它提供路径;尝试:

New ZipEntry(file.getName());

这将传递文件名。

关于java - 使用 Java 创建的 ZIP 文件在使用 Windows 资源管理器打开时显示为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23735067/

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