GZIPファイルからファイルを解凍する方法
前回の記事では、how to compress a file into a GZip formatについて学習しました。 この記事では、Gzipファイルから圧縮ファイルを解凍/解凍する方法を学びます。
Gzipの例
この例では、Gzipファイル「/home/example/file1.gz」を「/home/example/file1.txt」に解凍します。
package com.example.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/example/file1.gz";
private static final String OUTPUT_FILE = "/home/example/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();
}
}
}