JAVA EXAMPLE PROGRAMS

JAVA EXAMPLE PROGRAMS

Publish Your Article Here

Program: How to compress a file in GZip format?


Description:

The below example shows how to compress a file in GZip format.


Code:
package com.java2novice.zip;

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

public class MyFileGZipExamp {

	public void doGzip(String filePath){
		
		FileOutputStream fos = null;
		GZIPOutputStream gos = null;
		FileInputStream fis = null;
		try {
			fos = new FileOutputStream("C:/myGzip.gzip");
		    gos = new GZIPOutputStream(fos);
		    fis = new FileInputStream(filePath);
		    byte[] tmp = new byte[4*1024];
		    int size = 0;
		    while ((size = fis.read(tmp)) != -1) {
		        gos.write(tmp, 0, size);
		    }
		    gos.finish();
		    System.out.println("Done with GZip...");
		} catch (IOException e) {
			
		} finally{
			try{
				if(fis != null) fis.close();
				if(gos != null) gos.close();
			} catch(Exception ex){}
		}
	}
	
	public static void main(String a[]){
		
		MyFileGZipExamp mfg = new MyFileGZipExamp();
		mfg.doGzip("C:/test.txt");
	}
}

Output:
Done with GZip...
<< Previous Program | Next Program >>

List of all java.util.zip class sample examples:

  1. How to compress byte array in java?
  2. How to decompress byte array in java?
  3. How to zip a single file?
  4. How to zip multiple files?
  5. How to read zip files entries or file name list?
  6. How to unzip files in java?
  7. How to generate checksum value for for a file in java?
  8. How to compress and store objects using zip utility?
  9. How to decompress the compressed objects using zip utility?
  10. How to zip a file using ZipFile class?
  11. How to compress a file in GZip format?
  12. How to uncompress a file from GZip format?
Knowledge Centre
Interface and its usage
Interface is similar to a class which may contain method's signature only but not bodies and it is a formal set of method and constant declarations that must be defined by the class that implements it. Interfaces are useful for declaring methods that one or more classes are expected to implement, capturing similarities between unrelated classes without forcing a class relationship and determining an object's programming interface without revealing the actual body of the class.
Famous Quotations
Education is what remains after one has forgotten what one has learned in school.
-- Albert Einstein

About Author

I'm Nataraja Gootooru, programmer by profession and passionate about technologies. All examples given here are as simple as possible to help beginners. The source code is compiled and tested in my dev environment.

If you come across any mistakes or bugs, please email me to [email protected].

Most Visited Pages

Other Interesting Sites

Reference: Java™ Platform Standard Ed. 7 - API Specification | Java™ Platform Standard Ed. 8 - API Specification | Java is registered trademark of Oracle.
Privacy Policy | Copyright © 2022 by Nataraja Gootooru. All Rights Reserved.