vote up 1 vote down star
1

I want to open a ZIP-file, that have no entries with java.util.zip.ZipFile. But on the constructor I get the following exception: 'java.util.zip.ZipException: error in opening zip file'. How can I open the empty ZIP?

That ZIP-file is created by the commandline zip-program under linux. I simply deleted all entries from a ZIP-file.

I need this as testdata for a class I write. The class should simply return an empty list for this case, but broken ZIP-files should return an error.

For some more explanation on the problem. I have an interface, for extracting some documents from different sources. Other implementations gather them from webservices or directories, this implementation from ZIP-files. The interface give an Iterator with some more functionality. So I want to decide, if the ZIP-file is empty or broken.

flag

79% accept rate
Is it empty (but still a well formed ZIP file with headers, etc) or a zero-byte file? – McDowell Dec 12 '08 at 15:26
It has a size off 22 byte. I created it with command-line-zip by deleting all entries. – Mnementh Dec 12 '08 at 15:31

6 Answers

vote up 3 vote down

hack: you can assume that all empty ZIPs are the same and just hardcode it's length/chechsum to validate against.

link|flag
That's really a hack, but it could actually work. At least worth an upvote, thanks. :-) – Mnementh Dec 15 '08 at 8:15
vote up 1 vote down

I don't know why is it implemented this way, but why do you need to succesfully open an empty Zip file? You can't modify it with java.util.zip.ZipFile anyway...

So you can just catch the ZipException (which is thrown for invalid format zip files), and skip the file if you catch it.

link|flag
In my usecase I don't know in before, that the file will be empty. The class I write should work correct in this case also. – Mnementh Dec 12 '08 at 15:30
Then just catch that exception: java.pastebin.com/m3a8c5248 – Max Dec 12 '08 at 15:37
How should I decide, if it is an empty ZIP-file or a broken ZIP-File? And I get no ZipFile-object, to work with. – Mnementh Dec 12 '08 at 15:44
Are you sure you need to know if it is bad or empty? In both cases it is useless for your program. So you basically should not need any object for an useless file. If I'm wrong, then you should explain your goal, maybe we could find some better solution. – Max Dec 12 '08 at 15:47
vote up 1 vote down check

My solution for this problem is now, that I simply use ZipInputStream instead of ZipFile. This class works well with empty ZIP-files. I don't know about the reason, why one works and the other not.

link|flag
vote up 0 vote down

Are you sure it is a valid zip file? That would be my first guess.

link|flag
vote up 0 vote down

The ZIP file format has errors check the JDK here.

link|flag
vote up 0 vote down

Use a ZipOutputStream.

link|flag
I try with a ZipInputStream, thanks for the hint. – Mnementh Dec 15 '08 at 8:25

Your Answer

Get an OpenID
or

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