I'm working on application that takes files from one zip and put them in the other, its fine with files but if there is a dir in the source zip it fail with the following exception:

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

I'm using the following code:

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();
}

I have tried different buffer sizes but that doesn't help, I need a way to get a dynamic buffer size. Examples and links are welcome.

EDIT: I changed the code to make it usable

link|improve this question

70% accept rate
Which line has the exception? BTW: I would use a BufferedInputSTream as well (not that it will fix the issue) – Peter Lawrey Jan 10 at 10:49
at java.util.zip.ZipOutputStream.closeEntry(Unknown Source) at com.hachisoftware.mmi.system.Util.ZipExtractToZip(Util.java:26) – Liam Jan 10 at 10:53
feedback

1 Answer

up vote 2 down vote accepted

Move

zos.closeEntry();

outside the inner most loop, otherwise you are assuming each entry is no more than 1024 bytes long.

I am guess your directory is the first entry to be that size.


BTW, You can also move

byte[] buffer = new byte[1024];

to before the outer loop so it is created only once.

link|improve this answer
I will try that – Liam Jan 10 at 10:59
Thank you, that worked, I got a tiny bit of compression(1kb) but thats ok – Liam Jan 10 at 11:01
Also, if you do this, you only need create the buffer once, outside the outer loop. – sje397 Jan 10 at 11:03
thank you so much – Liam Jan 10 at 11:04
if i was to lower the buffer size would that compress the zip more? – Liam Jan 10 at 11:08
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.