Ungzip with GZIPInputStream : GZIP « File Input Output « Java






Ungzip with GZIPInputStream

  
 
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.zip.GZIPInputStream;

public class Main {

  public static void main(String[] args) throws Exception {
    FileInputStream fin = new FileInputStream("a.gz");
    GZIPInputStream gzin = new GZIPInputStream(fin);
    FileOutputStream fout = new FileOutputStream("a.dat");
    for (int c = gzin.read(); c != -1; c = gzin.read()) {
      fout.write(c);
    }
    fout.close();
  }
}

 

   
    
  








Related examples in the same category

1.GZip with GZIPOutputStream
2.Uncompress a file in the GZIP format
3.Compressing a File in the GZIP Format
4.Uncompressing a File in the GZIP Format
5.Compress a file in the GZIP format
6.gzipping files and zipping directories
7.Compress Java objects
8.Decompress Java objects
9.Compressed socket
10.Compress a list of files passed in from command line
11.GZIP compress
12.Compressing a File
13.Read some data from a gzip file
14.A collection of utility methods for working on GZIPed data
15.Reads GZIP, Zip, and Jar files
16.GZIP Filter, response stream and Response Wrapper