Java.util.zip 包中提供了可对文件的压缩和解压缩进行处理的类,它们继承自字节流类OutputSteam 和 InputStream。其中 GZIPOutputStream 和 ZipOutputStream 可分别把数据压缩成 GZIP 和 Zip 格式,GZIPInpputStream 和 ZipInputStream 又可将压缩的数据进行还原。
将文件写入压缩文件的一般步骤如下:
将文件从压缩文件中读出的一般步骤如下:
【示例】输入若干文件名,将所有文件压缩为“www.cdsy.xyz.zip”,再从压缩文件中解压并显示。
import java.io.*;
import java.util.*;
import java.util.zip.*;
class Demo{
public static void main(String args[]) throws IOException{
FileOutputStream a=new FileOutputStream("www.cdsy.xyz.zip");
//处理压缩文件
ZipOutputStream out=new ZipOutputStream(new BufferedOutputStream(a));
for(int i=0;i<args.length;i++){ //对命令行输入的每个文件进行处理
System.out.println("Writing file"+args[i]);
BufferedInputStream in=new BufferedInputStream(new FileInputStream(args[i]));
out.putNextEntry(new ZipEntry(args[i])); //设置 ZipEntry 对象
int b;
while((b=in.read())!=-1)
out.write(b); //从源文件读出,往压缩文件中写入
in.close();
}
out.close();
//解压缩文件并显示
System.out.println("Reading file");
FileInputStream d=new FileInputStream("www.cdsy.xyz.zip");
ZipInputStream inout=new ZipInputStream(new BufferedInputStream(d));
ZipEntry z;
while((z=inout.getNextEntry())!=null){ //获得入口
System.out.println("Reading file"+z.getName()); //显示文件初始名
int x;
while((x=inout.read())!=-1)
System.out.write(x);
System.out.println();
}
inout.close();
}
}
在命令行工具中运行程序,会发现在程序目录中多了一个名为 www.cdsy.xyz.zip 的压缩文件,使用解压缩软件(如 WinRAR 等)就可以将其打开。
运行结果为:
F:/Eclipse-code/Demo/bin>java Demo www.cdsy.xyz.txt www.cdsy.xyz.log
Writing filewww.cdsy.xyz.txt
Writing filewww.cdsy.xyz.log
Reading file
Reading filewww.cdsy.xyz.txt
www.cdsy.xyz is a great website.
Reading filewww.cdsy.xyz.log
start at 3 p.m
close at 4 p.m