Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public static void main(String argv[]){
    try
         {
        String date=new java.text.SimpleDateFormat("MM-dd-yyyy").format(new java.util.Date());
         File inFolder=new File("Output/" + date + "_4D");
         File outFolder=new File("Output/" + date + "_4D" + ".zip");
      ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(outFolder)));
      BufferedInputStream in = null;
      byte[] data    = new byte[1000];
      String files[] = inFolder.list();
      for (int i=0; i<files.length; i++)
          {
              in = new BufferedInputStream(new FileInputStream(inFolder.getPath() + "/" + files[i]), 1000);                  
        out.putNextEntry(new ZipEntry(files[i])); 
          int count;
          while((count = in.read(data,0,1000)) != -1)
            {
               out.write(data, 0, count);
            }
          out.closeEntry();
          }
          out.flush();
          out.close();
      }
     catch(Exception e)
     {
              e.printStackTrace();
     } 
}

Am trying to zip a folder which contains subfolders. Trying to zip the folder named 10-18-2010_4D.The above programs ends with the following exception. Please advise on how to clear the issue.

java.io.FileNotFoundException: Output\10-18-2010_4D\4D (Access is denied)
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(Unknown Source)
    at java.io.FileInputStream.<init>(Unknown Source)
    at ZipFile.main(ZipFile.java:17)
share|improve this question
The folder name in the exception and the one which you mentioned are different. – ivorykoder Oct 18 '10 at 16:21

3 Answers

up vote 3 down vote accepted

You need to check if the file is a directory because you can't pass directories to the zip method.

Take a look at this page which shows how you can recursively zip a given directory.

share|improve this answer
I think @dogbane is correct. I ran your code using a directory containing only files, and it worked as intended. As soon as I added a nested directoyr, I got the FNF (Access is Denied) exception. – Greg Case Oct 18 '10 at 16:52

I would include the ant task for zipping - it is way easier to work with.

The task class can be found here: org.apache.tools.ant.taskdefs.Zip (use it programatically)

share|improve this answer
Can you give some points about why we must prefer ant task for zipping? – ivorykoder Oct 18 '10 at 16:24
it's done in 3 lines of code, and it works. Compare to the above. – Bozho Oct 18 '10 at 16:26
@Bozho I could find many jar files in the recent version of Ant. which one should be used for Zipping folders? – LGAP Oct 18 '10 at 16:43
Except if you want to implement zip compression in your own application – jassuncao Oct 18 '10 at 16:45
@LGAP - see my update. @jassuncao - you can use it programatically – Bozho Oct 18 '10 at 16:51
show 4 more comments
private void zipFiles (ArrayList listWithFiles, String zipName) {
    try {

        byte[] buffer = new byte[1024];

        // create object of FileOutputStream
        FileOutputStream fout = new FileOutputStream(zipName);

        // create object of ZipOutputStream from FileOutputStream
        ZipOutputStream zout = new ZipOutputStream(fout);

        for (String currentFile : listWithFiles) {

            // create object of FileInputStream for source file
            FileInputStream fin = new FileInputStream(currentFile);

            // add files to ZIP
            zout.putNextEntry(new ZipEntry(currentFile ));

            // write file content
            int length;

            while ((length = fin.read(buffer)) > 0) {
                zout.write(buffer, 0, length);
            }

            zout.closeEntry();

            // close the InputStream
            fin.close();
        }

        // close the ZipOutputStream
        zout.close();
    } catch (IOException ioe) {
        System.out.println("IOException :" + ioe);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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