show/hide this revision's text 2 including sample code

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();
}
show/hide this revision's text 1

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