由 于 网 络 带 宽 是 有 限 的, 所 以 数 据 文 件 的 压 缩 有 利 于 数 据 在Internet 上 的 快 速 传 输, 同 时 也 节 省 服 务 器 的 外 存 空 间。
Java 实 现 了I/O 数 据 流 与 网 络 数 据 流 的 单 一 接 口, 因 此 数 据 的 压 缩、 网 络 传 输 和 解 压 缩 的 实 现 比 较 容 易, 下 面 介 绍 利 用ZipEntry、ZipInputStream 和ZipOutputStream 三 个Java 类 实 现zip 数 据 压 缩 方 式 的 编 程 方 法。
zip 压 缩 文 件 结 构: 一 个zip 文 件 由 多 个entry 组 成, 每 个entry 有 一 个 唯 一 的 名 称,entry 的 数 据 项 存 储 着 压 缩 数 据。
与zip 文 件 有 关 的 几 个java 类
类ZipEntry
public ZipEntry(String name);name 为 指 定 的 数 据 项 名。
类ZipOutputStream
ZipOutputStream 实 现 了zip 压 缩 文 件 的 写 输 出 流, 支 持 压 缩 和 非 压 缩entry。 下 面 列 出 了 它 的 几 个 函 数:
public ZipOutputStream(OutputStream out);// 利 用 输 出 流out 构 造 一 个ZIP 输 出 流。
public void setMethod(int method);// 设 置entry 压 缩 方 法, 缺 省 值 为DEFLATED。
public void putNextEntry(ZipEntry newe);// 如 果 当 前 的entry 存 在 且 处 于 激 活 状 态 时, 关 闭 它,在zip 文 件 中 写 入 新 的entry-newe, 并 将 数 据 流 定 位 于entry 数 据 项 的 起 始 位 置, 压 缩 方 法 为setMethod 指 定 的 方 法。
类ZipInputStream
ZipInputStream 实 现 了zip 压 缩 文 件 的 读 输 入 流, 支 持 压 缩 和 非 压 缩entry。 下 面 列 出 了 它 的 几 个 函 数:
public ZipInputStream(InputStream in);// 利 用 输 入 流in 构 造 一 个ZIP 输 出 流。
public ZipEntry getNextEntry();// 返 回ZIP 文 件 中 的 下 一 个entry, 并 将 输 出 流 定 位 在 此entry 数 据 项 的 起 始 位 置。
public void closeEntry();// 关 闭 当 前 的zip entry, 并 将 数 据 流 定 位 于 下 一 个entry 的 起 始 位 置。
程 序 代 码 及 其 注 释
下 列 的 程 序 实 现 了 数 据 文 件zip 方 式 的 压 缩 和 解 压 缩 方 法。randomData() 函 数 随 机 生 成50 个double 数 据, 并 放 在doc 字 符 串 变 量 中;openFile() 函 数 读 取ZIP 压 缩 文 件;saveFile() 函 数 将 随 机 生 成 的 数 据 存 到ZIP 格 式 的 压 缩 文 件 中。
import java.util.zip.*;
import java.awt.event.*;
import java.awt.*;
import java.lang.Math;
import java.io.*;
public class TestZip extends Frame
implements ActionListener {
TextArea textarea; //
显示数据文件的多行文本显示域
TextField infotip; //
显示数据文件未压缩大小及压缩大小单行文本显示域
String doc; //存储随机生成的数据
long doczipsize = 0;//压缩数据文件的大小
public TestZip(){
//生成菜单
MenuBar menubar = new MenuBar();
setMenuBar(menubar);
Menu file = new Menu("File",true);
menubar.add(file);
MenuItem neww= new MenuItem("New");
neww.addActionListener(this);
file.add(neww);
MenuItem open=new MenuItem("Open");
open.addActionListener(this);
file.add(open);
MenuItem save=new MenuItem("Save");
save.addActionListener(this);
file.add(save);
MenuItem exit=new MenuItem("Exit");
exit.addActionListener(this);
file.add(exit);
//随机生成的数据文件的多行文本显示域
add("Center",textarea =new TextArea());
//提示文本原始大小、压缩大小的单行文本显示域
add("South",infotip =new TextField());
}
public static void main(String args[]) {
TestZip ok=new TestZip();
ok.setTitle("zip sample");
ok.setSize(600,300);
ok.show();
}
private void randomData()
{//随机生成50个double数据,并放在doc字符串变量中。
doc="";
for(int i=1;i<51;i++){
double rdm=Math.random()*10;
doc=doc+new Double(rdm).toString();
if(i%5 == 0)doc=doc+"\n";
else doc=doc+" ";
}
doczipsize = 0;
showTextandInfo();
}
private void openFile()
{//打开zip文件,将文件内容读入doc字符串变量中。
FileDialog dlg=new FileDialog(this,"Open",FileDialog.LOAD);
dlg.show();
String filename=dlg.getDirectory()+dlg.getFile();
try{
//创建一个文件实例
File f=new File(filename);
if(!f.exists()) return; //文件不存在,则返回
//用文件输入流构建ZIP压缩输入流
ZipInputStream zipis=new
ZipInputStream(new FileInputStream(f));
zipis.getNextEntry();//将输入流定位在当前entry数据项位置
DataInputStream dis=new DataInputStream(zipis);
//用ZIP输入流构建DataInputStream
doc=dis.readUTF();//读取文件内容
dis.close();//关闭文件
doczipsize = f.length();//获取ZIP文件长度
showTextandInfo();//显示数据
}
catch(IOException ioe){
System.out.println(ioe);
}
}
private void saveFile()
{//打开zip文件,将doc字符串变量写入zip文件中。
FileDialog dlg=new FileDialog(this,"Save",FileDialog.SAVE);
dlg.show();
String filename=dlg.getDirectory()+dlg.getFile();
try{
//创建一个文件实例
File f=new File(filename);
if(!f.exists()) return; //文件不存在,则返回
//用文件输出流构建ZIP压缩输出流
ZipOutputStream zipos=new
ZipOutputStream(new FileOutputStream(f));
zipos.setMethod(ZipOutputStream.DEFLATED);
//设置压缩方法
zipos.putNextEntry(new ZipEntry("zip"));//生成一个ZIP entry,
写入文件输出流中,并将输出流定位于entry起始处。
DataOutputStream os=new DataOutputStream(zipos);
//用ZIP输出流构建DataOutputStream;
os.writeUTF(doc);//将随机生成的数据写入文件中
os.close();//关闭数据流
doczipsize = f.length();//获取压缩文件的长度
showTextandInfo();//显示数据
}
catch(IOException ioe){
System.out.println(ioe);
}
}
private void showTextandInfo()
{//显示数据文件和压缩信息
textarea.replaceRange(doc,0,textarea.getText().length());
infotip.setText("uncompessed size: "+doc.length()
+" compressed size: "+doczipsize);
}
public void actionPerformed(ActionEvent e){//
String arg = e.getActionCommand();
if ("New".equals(arg)) randomData();
else if ("Open".equals(arg)) openFile();
else if ("Save".equals(arg)) saveFile();
else if ("Exit".equals(arg)){
dispose();//关闭窗口
System.exit(0);//关闭程序
}
else{System.out.println("no this command!");}
}
}
程序运行结果