How to compress a file in GZIP format

Gzip is a popular tool to compress a file in *nix system, in order to reduce the file’s size. However “gzip” is not a “ZIP” tool, it only use to compress a file into a “.gz” format. It can not compress several files into a single archive.

GZip example

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

package com.mkyong.gzip;

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

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

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

    /**
     * GZip it
     * @param zipFile output GZip file location
     */
    public void gzipIt(){

     byte[] buffer = new byte[1024];

     try{

    	GZIPOutputStream gzos =
    		new GZIPOutputStream(new FileOutputStream(OUTPUT_GZIP_FILE));

        FileInputStream in =
            new FileInputStream(SOURCE_FILE);

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

        in.close();

    	gzos.finish();
    	gzos.close();

    	System.out.println("Done");

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

}

Popularity: 2% [?]

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.

4 Responses to “How to compress a file in GZIP format”

  1. TadWinett казва:

    really…

    Fat women and girls always worried because of their ugly shaped bodies. They want to wear expensive and stylish outfits . http://nvhtye.sosyalnet.net/ but they can not wear these outwears…

  2. Ehantelle казва:

    Greate…

    It’s such a great site! http://www.gather.com/viewArticle.action?articleId=281474979502341 Great post, I just bookmarked it on Digg….

  3. Khantelle казва:

    Great One…

    I must say, its worth it! My link, http://allison11.onsugar.com/,thanks haha…

  4. Dchelle казва:

    Great One…

    I must say, its worth it! My link, http://carmen11.blogec.si/,thanks haha…

Leave a Reply

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