gpt4 book ai didi

Java - Zip 输出流动态缓冲区大小

转载 作者:行者123 更新时间:2023-11-30 09:41:58 25 4
gpt4 key购买 nike

我正在开发从一个 zip 中获取文件并将它们放入另一个 zip 的应用程序,它对文件没问题,但如果源 zip 中有一个目录,它会失败,并出现以下异常:

Exception in thread "main" java.util.zip.ZipException: invalid entry size (expected 1374 but got 1024 bytes)

我正在使用以下代码:

public static void ZipExtractToZip(File inZip, File outZip) throws IOException
{
ZipInputStream zis = new ZipInputStream(new FileInputStream(inZip));
ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(outZip)));
byte[] buffer = new byte[1024];

for (ZipEntry ze = zis.getNextEntry(); ze != null; ze = zis.getNextEntry())
{
zos.putNextEntry(ze);
for (int read = zis.read(buffer); read != -1; read = zis.read(buffer)) {
zos.write(buffer, 0, read);
}
zos.closeEntry();
}

zos.close();
zis.close();
}

我尝试了不同的缓冲区大小,但这没有帮助,我需要一种方法来获取动态缓冲区大小。欢迎提供示例和链接。

编辑:我更改了代码以使其可用

最佳答案

移动

zos.closeEntry();

在最内层循环之外,否则您假设每个条目的长度不超过 1024 字节。

我猜你的目录是那个大小的第一个条目。


顺便说一句,你也可以移动

byte[] buffer = new byte[1024];

在外层循环之前,所以它只创建一次。

关于Java - Zip 输出流动态缓冲区大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8801998/

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