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.com2009-12-05T09:51:26Zhttp://stackoverflow.com/feeds/question/934832http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/934832/how-to-decompress-the-data-using-gzip-in-java-if-the-data-is-compressed-with-the2How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerryDeepak2009-06-01T13:32:24Z2009-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#9348662Answer by ypnos for How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerryypnos2009-06-01T13:39:53Z2009-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#9348990Answer by sylvarking for How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerrysylvarking2009-06-01T13:50:04Z2009-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#9361171Answer by Marc Novakowski for How to Decompress the data using GZIP in java if the data is compressed with the same in BlackBerryMarc Novakowski2009-06-01T18:32:57Z2009-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>