The moose likes Java in General and the fly likes Windows does not recognize Java created ZIP Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Windows does not recognize Java created ZIP" Watch "Windows does not recognize Java created ZIP" New topic
Author

Windows does not recognize Java created ZIP

David Cheung
Greenhorn

Joined: Jul 31, 2009
Posts: 10
I'm using java.util.zip to zip up some files, following some examples on the web (ZipOutputStream, ZipEntry, etc.)



Now, the created ZIP file appears to be valid, but when I use Windows to list the contents, it's empty! But when I use the third-party WinZip application, it sees the files without problem.

I've tried googling to see if this is a known problem, but I've come up with nothing, so I must be doing something wrong? Any help is appreciated!
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35252
    
    7
so I must be doing something wrong?

Why? One might as well conclude that Windows is doing something wrong


Android appsImageJ pluginsJava web charts
David Cheung
Greenhorn

Joined: Jul 31, 2009
Posts: 10
Actually, it turned out I *WAS* doing something wrong

When I create the new ZipEntry(String name), I gave it the absolute path of the file. Apparently this is not valid (for Windows. anyway)
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Windows does not recognize Java created ZIP
 
Similar Threads
how to put two different folders(which is in different location) into one zip entry
Java ZipFile
java.util.zip : Unzipping gives Windows error
Tomcat cannot unzip a War file
Compress .zip using Java