How to convert List to Set (ArrayList to HastSet)

In previous article, you learn about how to compress a file into a GZip format. In this article, you will learn how to gunzip it / decompress the compressed file from a gzip file.

Gzip example

In this example, it will decompress “/home/mkyong/file1.gz” to “/home/mkyong/file1.txt“.

package com.mkyong.gzip;

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

public class GZipFile
{
    private static final String INPUT_GZIP_FILE = "/home/mkyong/file1.gz";
    private static final String OUTPUT_FILE = "/home/mkyong/file1.txt";

    public static void main( String[] args )
    {
    	GZipFile gZip = new GZipFile();
    	gZip.gunzipIt();
    }

    /**
     * GunZip it
     */
    public void gunzipIt(){

     byte[] buffer = new byte[1024];

     try{

    	 GZIPInputStream gzis =
    		new GZIPInputStream(new FileInputStream(INPUT_GZIP_FILE));

    	 FileOutputStream out =
            new FileOutputStream(OUTPUT_FILE);

        int len;
        while ((len = gzis.read(buffer)) > 0) {
        	out.write(buffer, 0, len);
        }

        gzis.close();
    	out.close();

    	System.out.println("Done");

    }catch(IOException ex){
       ex.printStackTrace();
    }
   }
}

Popularity: 1% [?]

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

You can leave a response, or trackback from your own site.

Leave a Reply

Задвижван с помощта на WordPress | Compare Cell Phone Plans at iCellPhonePlans.com | Thanks to Cheap Palm Pixi, Bromoney and Wordpress Themes