Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write code that unzips a zip archive and places the output in another folder.

Do I have to use a third party library? Does anyone have some code to get me started?

    ZipEntry dataZE;
    InputStream isData = getClass().getResourceAsStream("/" + dataName + ".zip");
    StringBuffer sbData = new StringBuffer();
    ZipInputStream dataZIS = new ZipInputStream(isData);
    FileConnection file =
        (FileConnection)Connector.open(
            "file:///SDCard/BlackBerry/documents/" + filename,
            Connector.READ_WRITE
        );
    if (!file.exists()) {                               
        file.mkdir();
    }                   

    while ((dataZE = dataZIS.getNextEntry()) != null) {
       out.write(dataZE );
       out.flash();
       dataZIS.closeEntry();
    }
share|improve this question

1 Answer

up vote 6 down vote accepted

Use ZipME for unzip the zip archive files in Java ME / Blackberry applications.

Look on this sample code:

ZipEntry dataZE;
InputStream isData = getClass().getResourceAsStream("/" + dataName + ".zip");
StringBuffer sbData = new StringBuffer();
ZipInputStream dataZIS = new ZipInputStream(isData);
while ((dataZE = dataZIS.getNextEntry()) != null) {
    // do something...
    dataZIS.closeEntry();
}
share|improve this answer
How do I use that? I can't seem to be able to find a sample source code that can help me get started. – JohnDoe4136 Dec 22 '10 at 6:16
I updated the sample... – bharath Dec 22 '10 at 6:27
Hi. Thanks for the code. How do I create a folder in order to place these files in? Can the code i wrote in my edited works? – JohnDoe4136 Dec 22 '10 at 6:42
you can place into inside of src path or add into ur lib path(using netbeans). – bharath Dec 22 '10 at 6:54
Hi. I am done as what you said but i am getting a nullpointerexception. – JohnDoe4136 Dec 22 '10 at 7:00
show 11 more comments

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.