I hate generating an exception for things that I can simply test with an if statement. I know that a zero length zip/jar will trigger an exception if you try to access it using the java.util.zip/java.util.jar APIs. So, it seems like there should be a smallest file that these utility APIs are capable of working with.
|
According to ZIP file format specs a zip file should at least have the central directory structure that is 46 bytes long + 3 variable fields (check the spec by yourself). Maybe we should assume at least 1 entry that implies the file header for that entry. |
|||||||
|
|
You really should put this sort of code into a try/catch as there are many things that can go wrong when reading/writing files? If you really must know the answer to this then try to add a 1 byte file to a zip and then see if that fails? It's easy code to go through a range of sizes from 1 -> 65536 bytes and add to a zip and see which ones fail? |
|||||||
|
|
Jar files need to have at least one entry. If you want to make an empty one make a manifest only jar. See http://java.sun.com/j2se/1.4.2/docs/guide/jar/jar.html#JAR Manifest for more info on jar manifests. |
|||
|
|
I wrote a quick test and the smallest zip that I could create and then read back with the java.util.zip APIs was 118 byte. There may be a way to create a smaller zip file that is spec compliant and readable with the zip utility... |
|||
|
|
|
The smallest legal zip contains zero entries, and one "empty" central directory. The bytes are:
followed by 18 bytes of zero (0). So, 22 bytes long. VBscript to create it:
|
|||
|