vote up 2 vote down star
1

Lets say I have a file t.txt, a directory t and another file t/t2.txt. If I use the linux zip utility "zip -r t.zip t.txt t", I get a zip file with the following entries in them (unzip -l t.zip):

Archive:  t.zip
  Length     Date   Time    Name
 --------        ----      ----      ----
        9  04-11-09 09:11   t.txt
        0  04-11-09 09:12   t/
      15  04-11-09 09:12   t/t2.txt
 --------                           -------
       24                          3 files

If I try to replicate that behavior with java.util.zip.ZipOutputStream and create a zip entry for the directory, java throws an exception. It can handle only files. I can create a t/t2.txt entry in the zip file and add use the t2.txt file contents to it but I can't create the directory. Why is that?

flag

80% accept rate

3 Answers

vote up 0 vote down

You can at "/" at the end of folder name. Just use follow command zip.putNextEntry(new ZipEntry("xml/"));

link|flag
vote up 1 vote down

It's not just ZipOutputStream, standard ZIP files themselves cannot contain empty directories.

It's only modern file browsers that present ZIPs as containing directories at all; in reality they are only a list of files, where some of the filenames have characters in them that ZIP tools interpret as being directory path separators. Without a file under a given pathname, ZIP has no way to specify that such a pathname exists.

Think back to the horrible old WinZIP interface people used to use, that gave you a flat list of files by default: this, nasty though it was, was actually a much more accurate representation of what was really in the file.

link|flag
2  
NO. "Standard" (spec-compliant) ZIP files MAY contain entries which are directories. For each entry, there is a 32-bit "External file attributes" field; bits 4 and 5 indicate whether an entry is a file or directory. Despite the presence of this field, many zip libraries and tools cannot produce zips containing entries that are directories, or don't expose directories as entries in the interface, when reading zips with directories. For an entry marked as a directory, a common convention is to terminate the entryname with a slash in the zip metadata, but this is not required by the spec. – Cheeso May 11 at 17:26
vote up 2 vote down

It looks like ZipOutputStream can't handle empty directories, but you have a file in there so its not empty. Try (from)

public class Test {
    public static void main(String[] args) {
    	try {
    		FileOutputStream f = new FileOutputStream("test.zip");
    		ZipOutputStream zip = new ZipOutputStream(new BufferedOutputStream(f));
    		zip.putNextEntry(new ZipEntry("xml/"));
    		zip.putNextEntry(new ZipEntry("xml/xml"));
    		zip.close();
    	} catch(Exception e) {
    		System.out.println(e.getMessage());
    	}
    }
}
link|flag

Your Answer

Get an OpenID
or

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