利用Java實現zip壓縮/解壓縮 (轉)
利用Java實現zip壓縮/解壓縮 (轉)[@more@]
省的外存空間。
Java 1.1實現了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();
∥關閉當前的zentry,並將資料流定位於下一個entry的起始位置。
程式碼及其註釋
下列的程式實現了資料檔案zip方式的壓縮和解壓縮方法。ranData()函式隨機生成
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 Testextends 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.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); ∥設定壓縮方法
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("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();∥關閉視窗
System.exit(0);∥關閉程式
}
else {
System.out.println("no this command!");
}
}
}
利用實現zip/解壓縮
---摘自網際網路 由於頻寬有限,所以資料的壓縮有利於資料在Inte上的傳輸,同時也節省的外存空間。
Java 1.1實現了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();
∥關閉當前的zentry,並將資料流定位於下一個entry的起始位置。
程式碼及其註釋
下列的程式實現了資料檔案zip方式的壓縮和解壓縮方法。ranData()函式隨機生成
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 Testextends 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.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); ∥設定壓縮方法
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("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();∥關閉視窗
System.exit(0);∥關閉程式
}
else {
System.out.println("no this command!");
}
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-990434/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- CentOS中zip壓縮和unzip解壓縮命令詳解CentOS
- zip壓縮檔案處理方案(Zip4j壓縮和解壓)
- Ashampoo ZIP Pro 4,解壓縮
- Python實現壓縮和解壓縮Python
- Golang 學習筆記(五)- archive/zip 實現壓縮及解壓Golang筆記Hive
- Linux科研武器庫 - 檔案壓縮與解壓縮 - zip / unzipLinux
- java 生成 zip格式 壓縮檔案Java
- java 把檔案壓縮成 zipJava
- 利用 canvas 實現圖片壓縮Canvas
- WinZip Pro 9 for Mac 專業zip壓縮解壓工具Mac
- 壓縮Word,一鍵實現Word文件壓縮
- 使用java API進行zip遞迴壓縮資料夾以及解壓JavaAPI遞迴
- linux下壓縮解壓縮命令Linux
- 哈夫曼實現檔案壓縮解壓縮(c語言)C語言
- 用ASP實現線上壓縮與解壓縮功能程式碼
- PAT1078字串壓縮與解壓(java實現)字串Java
- node ~ zip壓縮 && 檔案加密加密
- linux命令系列-zip(壓縮打包)Linux
- Java實現壓縮資料夾Java
- Linux壓縮解壓Linux
- CentOS 壓縮解壓CentOS
- Linux tar分卷壓縮與解壓縮Linux
- The Unarchiver - Unzip RAR ZIP Mac - mac解壓縮工具HiveMac
- Nginx網路壓縮 CSS壓縮 圖片壓縮 JSON壓縮NginxCSSJSON
- rar壓縮解壓工具:RAR Extractor - ZIP Unarchiver中文啟用版Hive
- p7zip 解壓超過 4G壓縮包
- java 壓縮包 遍歷解壓 zip 和 7z 指定格式檔案Java
- C++ MiniZip實現目錄壓縮與解壓C++
- linuxtar解壓和壓縮Linux
- linux分卷壓縮解壓Linux
- java解壓rar,解壓zipJava
- java實現字元壓縮演算法Java字元演算法
- 【轉載】Rocksdb壓縮詳解
- linux 高效壓縮工具之xz的壓縮解壓使用Linux
- Java實現解壓縮檔案和資料夾Java
- Linux下的tar壓縮解壓縮命令詳解Linux
- Linux 常用的壓縮與解壓縮命令詳解Linux
- 檔案壓縮和解壓縮
- 分卷壓縮怎麼解壓 快速解壓電腦分卷壓縮檔案方法