转载

Java知多少(73)文件的压缩处理

Java.util.zip 包中提供了可对文件的压缩和解压缩进行处理的类,它们继承自字节流类OutputSteam 和 InputStream。其中 GZIPOutputStream 和 ZipOutputStream 可分别把数据压缩成 GZIP 和 Zip 格式,GZIPInpputStream 和 ZipInputStream 又可将压缩的数据进行还原。

将文件写入压缩文件的一般步骤如下:

  1. 生成和所要生成的压缩文件相关联的压缩类对象。
  2. 压缩文件通常不只包含一个文件,将每个要加入的文件称为一个压缩入口,使用ZipEntry(String FileName)生成压缩入口对象。
  3. 使用 putNextEntry(ZipEntry entry)将压缩入口加入压缩文件。
  4. 将文件内容写入此压缩文件。
  5. 使用 closeEntry()结束目前的压缩入口,继续下一个压缩入口。

将文件从压缩文件中读出的一般步骤如下:

  1. 生成和所要读入的压缩文件相关联的压缩类对象。
  2. 利用 getNextEntry()得到下一个压缩入口。
 1 【例 10-13】输入若干文件名,将所有文件压缩为“ep10_13.zip”,再从压缩文件中解压并显示。  2 //********** ep10_13.java **********  3 import java.io.*;  4 import java.util.*;  5 import java.util.zip.*;  6 class ep10_13{  7     public static void main(String args[]) throws IOException{  8         FileOutputStream a=new FileOutputStream("ep10_13.zip");  9         //处理压缩文件 10         ZipOutputStream out=new ZipOutputStream(new BufferedOutputStream(a)); 11         for(int i=0;i<args.length;i++){  //对命令行输入的每个文件进行处理 12             System.out.println("Writing file"+args[i]); 13             BufferedInputStream in=new BufferedInputStream(new FileInputStream(args[i])); 14             out.putNextEntry(new ZipEntry(args[i]));  //设置 ZipEntry 对象 15             int b; 16             while((b=in.read())!=-1) 17                 out.write(b);  //从源文件读出,往压缩文件中写入 18             in.close(); 19         } 20         out.close(); 21         //解压缩文件并显示 22         System.out.println("Reading file"); 23         FileInputStream d=new FileInputStream("ep10_13.zip"); 24         ZipInputStream  inout=new  ZipInputStream(new BufferedInputStream(d)); 25         ZipEntry z; 26  27         while((z=inout.getNextEntry())!=null){  //获得入口 28             System.out.println("Reading file"+z.getName());  //显示文件初始名 29             int x; 30             while((x=inout.read())!=-1) 31                 System.out.write(x); 32             System.out.println(); 33         } 34         inout.close(); 35     } 36 }

例 10-13 运行后,在程序目录建立一个 ep10_13.zip 的压缩文件,使用解压缩软件(如 WinRAR等),可以将其打开。命令提示符下,程序运行结果如图 10-12 所示:

Java知多少(73)文件的压缩处理 图 10-12  例 10_13 运行结果

正文到此结束
Loading...