I created a small application to read some files from the disk and zip it using java.util.zip.ZipOutputStream. It is successfully creating the zip file. But in windows when i try to open it / extract it am getting the error message like "Windows has blocked access to these files to help protect your computer". I am zipping only csv files. But if i try to unzip using the zipinputstream class from java itself, its unzipping it correctly. Can anyone throw some light on it.

regards, Anoop

link|improve this question

76% accept rate
feedback

4 Answers

You are seeing a security feature of Windows protecting you, not indicating the file is incorrect. Most likely because it finds your zip-file to be strange. Can 7zip open the file properly?

link|improve this answer
thnx man, but am not having 7zip in my workstation. tried with winzip and its also failing. the interesting this is that, i can unzip using java itself. i donno whether windows is treating the fils like not trustworthy. – Anoop Nov 1 '10 at 6:59
feedback

Try the code shown on Problem saving and loading multiple images in a same file at OTN. Just tested the code again and when I open images.zip by double clicking the file, Windows shows the contents just fine.

link|improve this answer
feedback

Is the Java process that created the file still running? If yes, it may have kept the zip file open, which on Windows usually means that no other process can read from it. Your code should look like:

OutputStream os = new FileOutputStream("reports.zip");
try {
  ZipOutputStream zos = new ZipOutputStream(os);
  ...
} finally {
  os.close();
}
link|improve this answer
Hi Roland, thnx 4 the reply. I am closing the outputstream as well as zipoutputstream and the zipentry also. :( – Anoop Nov 1 '10 at 6:57
That gives a different error message. – Thorbjørn Ravn Andersen Nov 1 '10 at 7:47
feedback
up vote 0 down vote accepted

Finally I found out the problem. It was related to the path. its really funny, but if u give the absoute path of the files to be zipped to zipoutputstream, this error happens. i tried with relative paths and BINGO!!! it worked. Hence i did some work around before zipping and pointed the parent of the files to the current working directory and then zipped. Thanks all for the responses.

link|improve this answer
Do you remember the full path, and want to share it with us? Maybe this special path is enlightening. – Roland Illig Apr 5 '11 at 15:47
feedback

Your Answer

 
or
required, but never shown

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