Possible Duplicate:
How to decompress a gzipped data in a byte array?
I have a Gzip'd byte array and I simply want to uncompress it and print the output. It's something like this:
byte[] gzip = getGZIPByteArray();
/* Code do uncompress the GZIP */
System.out.print(uncompressedGZIP);
Can anybody help me with the code in the middle?