How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerry - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T09:51:26Z http://stackoverflow.com/feeds/question/934832 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/934832/how-to-decompress-the-data-using-gzip-in-java-if-the-data-is-compressed-with-the 2 How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerry Deepak 2009-06-01T13:32:24Z 2009-06-02T06:43:32Z <p>I have written a sample program to compress and decompress data using GZIP in blackberry. This program works fine.</p> <p>I have written a sample program to compress and decompress data using GZIP in Java. This program also works fine.</p> <p>But if I compress the data using BlackBerry. I am unable to decompress the data in java.</p> <p>How to overcome from this issue.</p> <p>Thanks Deepak</p> http://stackoverflow.com/questions/934832/how-to-decompress-the-data-using-gzip-in-java-if-the-data-is-compressed-with-the/934866#934866 2 Answer by ypnos for How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerry ypnos 2009-06-01T13:39:53Z 2009-06-01T13:39:53Z <p>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.</p> http://stackoverflow.com/questions/934832/how-to-decompress-the-data-using-gzip-in-java-if-the-data-is-compressed-with-the/934899#934899 0 Answer by sylvarking for How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerry sylvarking 2009-06-01T13:50:04Z 2009-06-01T13:50:04Z <p>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 <a href="http://java.sun.com/javase/6/docs/api/java/util/zip/GZIPInputStream.html" rel="nofollow"><code>GZIPInputStream</code></a>?</p> <p>If you just want something that works, you should definitely use the core Java library.</p> <p>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.</p> http://stackoverflow.com/questions/934832/how-to-decompress-the-data-using-gzip-in-java-if-the-data-is-compressed-with-the/936117#936117 1 Answer by Marc Novakowski for How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerry Marc Novakowski 2009-06-01T18:32:57Z 2009-06-02T06:43:32Z <p>If you follow the sample code given in the BlackBerry Javadocs for <a href="http://www.blackberry.com/developers/docs/4.7.0api/net/rim/device/api/compress/GZIPOutputStream.html" rel="nofollow">GZIPOutputStream</a>, it should be compressing it correctly.</p> <p><strong>Sample code</strong></p> <pre><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(); } </code></pre>