中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

利用Java實現(xiàn)zip壓縮/解壓縮(轉(zhuǎn))

利用Java實現(xiàn)zip壓縮/解壓縮 (轉(zhuǎn))[@more@]

利用Java實現(xiàn)zip壓縮/解壓縮

---摘自互聯(lián)網(wǎng)  由于網(wǎng)絡(luò)帶寬有限,所以數(shù)據(jù)文件的壓縮有利于數(shù)據(jù)在Inte.NET上的快速傳輸,同時也節(jié)

服務(wù)器的外存空間。

  Java 1.1實現(xiàn)了I/O數(shù)據(jù)流與網(wǎng)絡(luò)數(shù)據(jù)流的單一接口,因此數(shù)據(jù)的壓縮、網(wǎng)絡(luò)傳輸和解

壓縮的實現(xiàn)比較容易,下面介紹利用ZipEntry、ZipInputStream和ZipOutputStream三個Java

類實現(xiàn)zip數(shù)據(jù)壓縮方式的編程方法。

  zip壓縮文件結(jié)構(gòu):一個zip文件由多個entry組成,每個entry有一個唯一的名稱,entry的

數(shù)據(jù)項存儲壓縮數(shù)據(jù)。

  與zip文件有關(guān)的幾個Java類

  ·類ZipEntry

  public ZipEntry(String name);

  name為指定的數(shù)據(jù)項名。

  ·類ZipOutputStream

  ZipOutputStream實現(xiàn)了zip壓縮文件的寫輸出流,支持壓縮和非壓縮entry。下面是它的

幾個函數(shù):

  public ZipOutputStream(OutputStream out);

  ∥利用輸出流out構(gòu)造一個ZIP輸出流。

  public void setMethod(int method);

  ∥設(shè)置entry壓縮方法,缺省值為DEFLATED。

  public void putNextEntry(ZipEntry newe);

  ∥如果當(dāng)前的entry存在且處于激活狀態(tài)時,關(guān)閉它,在zip文件中寫入新的entry-newe

并將數(shù)據(jù)流定位于entry數(shù)據(jù)項的起始位置,壓縮方法為setMethod指定的方法。

  ·類ZipInputStream

  ZipInputStream實現(xiàn)了zip壓縮文件的讀輸入流,支持壓縮和非壓縮entry。下面是它的

幾個函數(shù):

  public ZipInputStream(InputStream in);

  ∥利用輸入流in構(gòu)造一個ZIP輸出流。

  public ZipEntry getNextEntry();

  ∥返回ZIP文件中的下一個entry,并將輸出流定位在此entry數(shù)據(jù)項的起始位置。

  public void closeEntry();

  ∥關(guān)閉當(dāng)前的zip entry,并將數(shù)據(jù)流定位于下一個entry的起始位置。

  程序代碼及其注釋

  下列的程序?qū)崿F(xiàn)了數(shù)據(jù)文件zip方式的壓縮和解壓縮方法。randomData()函數(shù)隨機生成

50個double數(shù)據(jù),并放在doc字符串變量中;openFile()函數(shù)讀取ZIP壓縮文件;saveFile()函數(shù)

將隨機生成的數(shù)據(jù)存到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; ∥顯示數(shù)據(jù)文件的多行文本顯示域

  TextField infotip; ∥顯示數(shù)據(jù)文件未壓縮大小及壓縮大小單行文本顯示域

  String doc; ∥存儲隨機生成的數(shù)據(jù)

  long doczipsize = 0;∥壓縮數(shù)據(jù)文件的大小

  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);

  ∥隨機生成的數(shù)據(jù)文件的多行文本顯示域

  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數(shù)據(jù),并放在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文件,將文件內(nèi)容讀入doc字符串變量中。

  FileDialog dlg=new FileDialog(this,"Open",FileDialog.LOA D);

  dlg.show();

  String filename=dlg.getDirectory()+dlg.getFile();

  try{

  ∥創(chuàng)建一個文件實例

  File f=new File(filename);

  if(!f.exists()) return; ∥文件不存在,則返回

  ∥用文件輸入流構(gòu)建ZIP壓縮輸入流

  ZipInputStream zipis=new ZipInputStream(new FileInputStream(f));

  zipis.getNextEntry();

  ∥將輸入流定位在當(dāng)前entry數(shù)據(jù)項位置

  DataInputStream dis=new DataInputStream(zipis);

  ∥用ZIP輸入流構(gòu)建DataInputStream

  doc=dis.readUTF();∥讀取文件內(nèi)容

  dis.close();∥關(guān)閉文件

  doczipsize = f.length();∥獲取ZIP文件長度

  showTextandInfo();∥顯示數(shù)據(jù)

  }

  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{

  ∥創(chuàng)建一個文件實例

  File f=new File(filename);

  if(!f.exists()) return; ∥文件不存在,則返回

  ∥用文件輸出流構(gòu)建ZIP壓縮輸出流

  ZipOutputStream zipos=new ZipOutputStream(new FileOutputStream(f));

  zipos.setMethod(ZipOutputStream.DEFLATED); ∥設(shè)置壓縮方法

  zipos.putNextEntry(new ZipEntry("zip"));

  ∥生成一個ZIP entry,寫入文件輸出流中,并將輸出流定位于entry起始處。

  DataOutputStream os=new DataOutputStream(zipos);

  ∥用ZIP輸出流構(gòu)建DataOutputStream;

  os.writeUTF(doc);∥將隨機生成的數(shù)據(jù)寫入文件中

  os.close();∥關(guān)閉數(shù)據(jù)流

  doczipsize = f.length();

  ∥獲取壓縮文件的長度

  showTextandInfo();∥顯示數(shù)據(jù)

  }

  catch(IOException ioe){

  System.out.println(ioe);

  }

  }

  private void showTextandInfo(){

  ∥顯示數(shù)據(jù)文件和壓縮信息

  textarea.replaceRange(doc,0,textarea.getText().length());

  infotip.setText("uncompressed size: "+doc.length()+"compressed size: "+dc zipsize);

  }

  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();∥關(guān)閉窗口

   System.exit(0);∥關(guān)閉程序

  }

  else {

   System.out.println("no this command!");

  }

  }

  }


網(wǎng)站欄目:利用Java實現(xiàn)zip壓縮/解壓縮(轉(zhuǎn))
文章鏈接:http://www.rwnh.cn/article22/igjgjc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信小程序、標(biāo)簽優(yōu)化、品牌網(wǎng)站設(shè)計、域名注冊靜態(tài)網(wǎng)站、響應(yīng)式網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

小程序開發(fā)
浦北县| 芜湖县| 宜阳县| 项城市| 阳朔县| 石城县| 息烽县| 宝鸡市| 湘潭县| 永安市| 庆安县| 洛扎县| 洛南县| 铁岭县| 苍溪县| 仁寿县| 布尔津县| 敦煌市| 柏乡县| 丰原市| 南涧| 晋江市| 婺源县| 博乐市| 农安县| 淳化县| 二手房| 柳江县| 合阳县| 泸州市| 胶州市| 荥经县| 鹤山市| 锦屏县| 白朗县| 灵璧县| 卢氏县| 盘山县| 城市| 邹平县| 枞阳县|