How can I append files to an existing zip file? I already have the code that can create a zip file and it works great except for one big problem. The way it works now, the user takes a bunch of pictures, and at the end, all the pictures get added to a zip file, which can take quite a while if you take enough pictures. :-( So I'm thinking, I have a very good and efficient solution. As the pictures are taken, I will simply add the each new picture to the zip file right after it's taken. Then when they're done taking pictures, finish up the zip file so it's usable and export it. :-)

The problem is, I can not get it to add files to an existing zip file. :-( Here's what I have so far. Also, please keep in mind, this is just a proof of concept, I do understand that re-initializing everything for every iteration of the for loop is very dumb. Each iteration of the loop is supposed to represent another file being added which will most likely be a long time later, maybe even an hour later, which is why I have everything resetting each iteration, because the app will be shut down between adding files. If I can get this working, then I will actually ditch the for loop and put this code into a function that gets called every time a picture gets taken. :-)

        try  {
            for(int i=0; i < _files.size(); i++) {
                //beginning of initial setup stuff
                BufferedInputStream origin = null;
                FileOutputStream dest = new FileOutputStream(_zipFile,false); 
                ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(dest));
                byte data[] = new byte[BUFFER];
                out.setLevel(0); //I added this because it makes it not compress the data 
                //at all and I hoped that it would allow the zip to be appended to
                //end of initial setup stuff

                //beginning of old for loop
                Log.v("Compress", "Adding: " + _files[i]); 
                FileInputStream fi = new FileInputStream(_files[i]); 
                origin = new BufferedInputStream(fi, BUFFER); 
                ZipEntry entry = new ZipEntry(_files[i].substring(_files[i].lastIndexOf("/") + 1)); 
                out.putNextEntry(entry); 
                int count; 
                while ((count = origin.read(data, 0, BUFFER)) != -1) { 
                    out.write(data, 0, count); 
                } 
                origin.close();     
                //end of for old loop

                //beginning of finishing stuff
                out.close();
                //end of finishing stuff
            } 
        } catch(Exception e) {
            Log.e("ZipCreation", "Error writing zip", e);
            e.printStackTrace();
        }

Also, I have experimented around with

FileOutputStream dest = new FileOutputStream(_zipFile,true);

If you notice, I set append to true, which will actually append the data to an existing file. And what's interesting is, it actually does append the data to the original file, however, after the file gets extracted on my computer, the last file written is all that gets extracted, which is bad. :-( So is there some way to start writing a zip file, and then later, add on to it, and finish up the zip file? I've even thought about possibly taking ZipOutputStream and modifying it to fit this model that I need. It should logically be possible somehow? :-)

Thanks in advance for the help! :-D

-Jared

link|improve this question
feedback

2 Answers

I believe it can't be done right now with the current API.
You can append data to any file, but that does not mean that you will end up with the right file format. A .zip file is not like a .tar file, and the compression requires imposes restrictions to the handling of the files (file positions, EOF, etc.). If you consider the structure of the file format (taken from wikipedia here) you will understand why just appending does not work.

There is a library called TrueZip that could work, although I do not know if it supports android. Take a look at this answer in another similar question: Appending files to a zip file with Java .

Also, as a workaround, you could create individual .zip files and append them as a tarball (file format here). Compression might be slighty worst, but it would be much better in terms of time efficiency.


Update based on the comments (and possible solution)

You could separate the addition to each ZipEntry and leave the ZipOutputStream object open as long as you are still taking pictures. I can see risks with that approach, though, as any problem with the app while still taking pictures (a force close, run out of battery, etc) may render the whole file unusable. You will need to make sure to use the right try/catch/finally blocks to close the file and call closeZip() upon events such as onClose() and onDestroy(), but the idea would be the following:

import java.io.*;
import java.util.zip.*;

public class Zip {
    static final int BUFFER = 2048;

    ZipOutputStream out;
    byte data[];

    public Zip(String name) {
        FileOutputStream dest = new FileOutputStream(name);
        out = new ZipOutputStream(new BufferedOutputStream(dest));
        data = new byte[BUFFER];
    }

    public void addFile (String name) {
        FileInputStream fi = new FileInputStream(name);
        BufferedInputStream origin = new BufferedInputStream(fi, BUFFER);
        ZipEntry entry = new ZipEntry(name);
        out.putNextEntry(entry);
        int count;
        while((count = origin.read(data, 0, BUFFER)) != -1) {
           out.write(data, 0, count);
        }
        origin.close();
     }

    public void closeZip () {
        out.close();
    }
}
link|improve this answer
Actually, I still think it can be done, right now I'm looking into possibly extending the ZipOutputStream class and opening up some properties so that I can maybe back them up using a function call I create in my extended class, and then restore where I was. All I'm saying is, there has to be a way. The basic concept is simple, Start writing the file, back up where you were, and then resume writing the file later. There has to be a way to do at least something like that. I'll see if I can get anywhere with extending ZipOutputStream. Thanks for the tip on TrueZip, though. :-) – Jared Apr 21 '11 at 7:02
Take a look at this also: example-code.com/java/zip_AppendRenamed.asp . – Aleadam Apr 21 '11 at 13:07
@Aleadam, after looking into the zip file format on Wikipedia, I feel even more strongly that there is no reason I can't resume writing a zip file later. Please keep in mind, I guess I mislabeled my post, I'm sorry, because I don't want to append a file to a zip file. All I need to be able to do is start writing the zip file, then at some point, pause writing, close the output stream without finalizing the zip, store all my current variables (which will include the central directory info), and then at a later time, load those variables back up and pick up where I left off. :-) – Jared Apr 23 '11 at 16:39
@Aleadam, maybe since I don't really want to "Append" files, my question is mis-labeled and maybe I should re-ask it after rephrasing some things? What do you think :-\ – Jared Apr 23 '11 at 16:40
OK, I updated my answer. It is far from a complete class, but that's the idea. In the event that it had to be closed in the middle, you will end up opening, reading it and rewriting the whole thing again (not in the example), but if everything works fine, this should do it. – Aleadam Apr 23 '11 at 17:08
show 1 more comment
feedback
up vote 0 down vote accepted

Ok, thanks for all your suggestions, but I was able to get it working like I wanted.... it CAN be done, you CAN add files after closing the file, as long as you save your place!!! :-D

Here's how I was able to get it going working:

        try  {
            for(int i=0; i < _files.size(); i++) {
                //beginning of initial setup stuff
                BufferedInputStream origin = null;
                FileOutputStream dest = new FileOutputStream(_zipFile,true); 
                ZipOutputStreamNew out = new ZipOutputStreamNew(new BufferedOutputStream(dest));
                byte data[] = new byte[BUFFER];
                if (havePreviousData) {
                    out.setWritten(tempWritten);
                    out.setXentries(tempXentries);
                }
                //end of initial setup stuff

                //beginning of for loop
                Log.i("Compress", "Adding: " + _files.get(i));
                FileInputStream fi = new FileInputStream(_files.get(i)); 
                origin = new BufferedInputStream(fi, BUFFER);
                TempString = _files.get(i).substring(_files.get(i).lastIndexOf("/") + 1);
                ZipEntry entry = new ZipEntry(_paths.get(i) + TempString);
                out.putNextEntry(entry);
                int count;
                while ((count = origin.read(data, 0, BUFFER)) != -1) { 
                    out.write(data, 0, count); 
                }
                origin.close();
                out.closeEntry();
                //end of for loop

                //beginning of finishing stuff
                if (i == (_files.size()-1)) {
                    //it's the last record so we should finish it off
                    out.closeAndFinish();
                } else {
                    //close the file, but don't write the Central Directory
                    //first, back up where the zip file was...
                    tempWritten = out.getWritten();
                    tempXentries = out.getXentries();
                    havePreviousData = true;
                    //now close the file
                    out.close();
                }
                //end of finishing stuff
            }
            //zip succeeded
    } catch(Exception e) {
        Log.e("ZipCreation", "Error writing zip", e);
        e.printStackTrace();
    }

Also, keep in mind, this is not the only code I had to do. I also had to make my own copy of ZipOutputStream so that I could expose the following functions that I created within my ZipOutputStreamNew class....

getWritten()
getXentries()

as well as

setWritten(long mWritten)
setXentries(Vector<XEntry> mXEntries)

For the most part, all this does, is it starts writing like normal, then, instead of closing like normal, it backs up those two variables, and then for the next iteration, it restores just those variables.

Let me know if you have any questions about all this, but I knew it would work, all it has to do is save where it was. :-D

Thanks again for all the help everybody! :-)

link|improve this answer
Just a quick update... I tested out this method of writing part of the zip file every time a picture is taken, then when the user hits export, simply closing up the zip file. After running some tests it works really nice! There's just a slight pause each time you take a picture, which isn't a big deal. Previously with the normal method it would take up to a few minutes to write all the files to the zip file at the end. But now, with this method, exporting at the end is instant!!!! :-D Thanks guys! :-) – Jared May 1 '11 at 16:48
i have tried that code but my problem is that how to add my file to this code and where to get zip file from this code. – iPhone-Android-rahul Nov 28 '11 at 6:49
In the example I gave, _files is an ListArray of strings which if you look at the for loop, gets iterated through and added to the zip file which is stored as a string called _zipFile so the zip file will be written to whatever you set _zipFile to :-) – Jared Dec 14 '11 at 18:50
Also, keep in mind, this is written more as a "Proof of Concept" kind of thing, you normally wouldn't close and re-open the FileOutputStream with every iteration of the loop, however, I needed to be able to do it because I needed to be able to add a file to a zip, and then later add another file, possibly after the app has restarted, that is why this example worked so well for me :-) (I hope it helps you too) :-) – Jared Dec 14 '11 at 18:52
And don't forget to make your own copy of the ZipOutputStream class, which you can get from the open source Java libraries I believe. You basically have to copy their class, and then add in some stuff to make it work like it does in this example. – Jared Dec 14 '11 at 18:55
feedback

Your Answer

 
or
required, but never shown

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