我正在开发从一个 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();
}
我尝试了不同的缓冲区大小,但这无济于事,我需要一种获得动态缓冲区大小的方法。欢迎提供示例和链接。
编辑:我更改了代码以使其可用
- Hachi Software首席执行官Liam