Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to unzip a zip file which is stored in the raw folder. Code is as follows

try
{
    File myDir = new File(getFilesDir().getAbsolutePath());
    File newFile = new File(myDir + "/imageFolder");

if(!newFile.exists())
                    {
                        newFile.mkdir();
                    }

    ZipInputStream zipIs = new ZipInputStream(con
            .getResources().openRawResource(R.raw.images));
    ZipEntry ze = null;

    while ((ze = zipIs.getNextEntry()) != null)
    {

        Log.v("Name", ze.getName());
        Log.v("Size", "" + ze.getSize());

        if(ze.getSize() >0)
        {
            FileOutputStream fout = new FileOutputStream(newFile
                    + "/" + ze.getName());                      

            byte[] buffer = new byte[1024];
            int length = 0;

            while ((length = zipIs.read(buffer)) > 0)
            {
                fout.write(buffer, 0, length);
            }
            zipIs.closeEntry();
            fout.close();
        }   
        }

    zipIs.close();

} catch (Exception e)
{
    e.printStackTrace();
}

But I keep getting this error

01-18 11:24:28.301: W/System.err(2285): java.io.FileNotFoundException: /data/data/com.example.ziptests/files/imageFolder/TestImages/background.png (Not a directory)

I have absolutely no idea why it is causing this, it finds the files, but when it comes to writing them out, it brings up that error. Originally I found a problem that was caused by having the zip file zipped up on the mac, so I zipped up the file on my windows machine instead, that got rid of one problem (when you zip on a mac, it adds these extra folders and files such s store.ds which causes an error when trying to unzip), but this not a directory error keeps coming up.

Any ideas why this is happening?

share|improve this question
the zip file is compressed using winzip software? – Dipak Keshariya Jan 18 at 11:32
Yeah I zipped it on Windows rather than on the mac as zipping on the mac causes issues as it adds in extra folders which is annoying – AdamM Jan 18 at 11:33
See my answer.... – Dipak Keshariya Jan 18 at 11:45

2 Answers

Please try below link code for unzip zip file.

Code for Extract Zip File

Unzip Zip File

The Problem is I am Uploading zip File which is not made using winrar software, so it is not proper extracted and give me error.

It will solve your problem.

share|improve this answer
Okay I used the decompress code, and updated it to take an inputstream rather than a string for its zip location. However it is taking over a minute to extract all the images, and it eventually crashes while trying to unzip them all, there are only 42 small images. Any reason for this? – AdamM Jan 18 at 12:00

You can't write files to the raw folder. It is a read only dir intended to contain resource files included in your apk.


UPDATE
That file would be better in the assets directory. You can access it through the AssetManager. If not, leave it in the res/raw dir, but access it through Resources.openRawResource. Either way they are Read-Only.

share|improve this answer
I am not writing to the raw folder, I am only reading from the raw folder – AdamM Jan 18 at 11:43
You said "when it comes to writing them out...". Anyway, move your zip file from res to assets folder, and get the file as I'm about to post in the answer. – Mister Smith Jan 18 at 11:49
But if you look at my code, I am not trying to write out to the raw folder, only read from it, then write out to the internal storage on the phone – AdamM Jan 18 at 11:56

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.