熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

利用Java實現zip壓縮/解壓縮(1)

2022-06-13   來源: JSP教程 

  由於網絡帶寬有限所以數據文件的壓縮有利於數據在Internet上的快速傳輸同時也節
  
  省服務器的外存空間
  
    Java 實現了I/O數據流與網絡數據流的單一接口因此數據的壓縮網絡傳輸和解
  
  壓縮的實現比較容易下面介紹利用ZipEntryZipInputStream和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文件中寫入新的entrynewe
  
  並將數據流定位於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()函數隨機生成
  
  個double數據並放在doc字符串變量中;openFile()函數讀取ZIP壓縮文件;saveFile()函數
  
  將隨機生成的數據存到ZIP格式的壓縮文件中
  
    import javautilzip*;
  
    import javaawtevent*;
  
    import javaawt*;
  
    import javalangMath;
  
    import javaio*;
  
    public class TestZip extends Frame implements ActionListener {
  
    TextArea textarea; ∥顯示數據文件的多行文本顯示域
  
    TextField infotip; ∥顯示數據文件未壓縮大小及壓縮大小單行文本顯示域
  
    String doc; ∥存儲隨機生成的數據
  
    long doczipsize = ;∥壓縮數據文件的大小
  
    public TestZip(){
  
    ∥生成菜單
  
    MenuBar menubar = new MenuBar();
  
    setMenuBar(menubar);
  
    Menu file = new Menu(Filetrue);
  
    menubaradd(file);
  
    MenuItem neww= new MenuItem(New);
  
    newwaddActionListener(this);
  
    fileadd(neww);
  
    MenuItem open=new MenuItem(Open);
  
    openaddActionListener(this);
  
    fileadd(open);
  
    MenuItem save=new MenuItem(Save);
  
    saveaddActionListener(this);
  
    fileadd(save);
  
    MenuItem exit=new MenuItem(Exit);
  
    exitaddActionListener(this);
  
    fileadd(exit);
  
    ∥隨機生成的數據文件的多行文本顯示域
  
    add(Centertextarea = new TextArea());
  
    ∥提示文本原始大小壓縮大小的單行文本顯示域
  
    add(Southinfotip = new TextField());
  
    }
  
    public static void main(String args[]){
  
    TestZip ok=new TestZip();
  
    oksetTitle(zip sample);
  
    oksetSize();
  
    okshow();
  
    }
  
    private void randomData(){
  
    ∥隨機生成個double數據並放在doc字符串變量中
  
    doc=;
  
    for(int i=;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字符串變量中。TW.WINgWIT.coM
  
    FileDialog dlg=new FileDialog(this,"Open",FileDialog.LOA D);
  
    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); ∥設置壓縮方法
  

From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19182.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.