vote up 2 vote down star

I have written a sample program to compress and decompress data using GZIP in blackberry. This program works fine.

I have written a sample program to compress and decompress data using GZIP in Java. This program also works fine.

But if I compress the data using BlackBerry. I am unable to decompress the data in java.

How to overcome from this issue.

Thanks Deepak

flag

0% accept rate
Describe more specifically what the problem is. If you are using java.util.zip.GZIPInputStream, does it raise an exception when you attempt to decompress the file? If so, provide the full stack trace. Otherwise, describe what "unable to decompress the data" means. – sylvarking Jun 1 at 14:39

3 Answers

vote up 2 vote down

You should try a reference GZIP implementation like the gzip tool itself. Then you will get a better understanding which of your ends is not standard-compliant.

link|flag
vote up 0 vote down

When you say, "I have written a sample program," do you mean you wrote your own GZIP code, or you wrote a program that uses GZIPInputStream?

If you just want something that works, you should definitely use the core Java library.

If you are trying to satisfy your curiosity about how GZIP works and want to write your own code as a learning exercise, you'll have to provide much more detail.

link|flag
hi, I am using GZIPInputStream .... – Sam97305421562 Jun 1 at 13:53
vote up 1 vote down

If you follow the sample code given in the BlackBerry Javadocs for GZIPOutputStream, it should be compressing it correctly.

Sample code

public static byte[] compress( byte[] data )
{   
    try
    {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        GZIPOutputStream gzipStream = new GZIPOutputStream( baos, 6, GZIPOutputStream.MAX_LOG2_WINDOW_LENGTH );
        gzipStream.write( data );
        gzipStream.close();
    }
    catch(IOException ioe)
    {
        return null;
    }

    return baos.toByteArray();
}
link|flag

Your Answer

Get an OpenID
or

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