Uncompress a file in the GZIP format : GZIP « File Input Output « Java






Uncompress a file in the GZIP format

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

public class Main {
  public static void main(String[] argv) throws Exception {
    String source = "s.gzip";
    GZIPInputStream in = new GZIPInputStream(new FileInputStream(source));
    String target = "outfile";
    OutputStream out = new FileOutputStream(target);
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
      out.write(buf, 0, len);
    }
    in.close();
    out.close();
  }
}

   
    
  








Related examples in the same category

1.GZip with GZIPOutputStream
2.Ungzip with GZIPInputStream
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