当前位置: 技术问答>java相关
请问用这两个压缩程序可不可以改一下用来压缩文件流?
来源: 互联网 发布时间:2015-09-20
本文导语: 请问用这两个压缩程序可不可以改一下用来压缩文件流? 因为现在在某一个方法里面只是需要一个FileInputStream作为参数传入来,现在压缩与解压缩可用的,但我还未将文件经过下面两个程序压缩,只是将原文件的File...
请问用这两个压缩程序可不可以改一下用来压缩文件流?
因为现在在某一个方法里面只是需要一个FileInputStream作为参数传入来,现在压缩与解压缩可用的,但我还未将文件经过下面两个程序压缩,只是将原文件的FileInputStream读出然后传给这个参数,读FileInputStream的方法如下:
public FileInputStream getFileInputStream(String fileName){
FileInputStream is = null;
File file = new File(fileName);
try{
is = new FileInputStream(file);
}catch(FileNotFoundException e){
e.printStackTrace();
}
//我想在这里用压缩程序得到压缩后的文件流,再传回去!
//或者请提提建议怎样更方便实现!
return is;
}
以下是压缩与解压缩程序:
-----------------------------------------------------------
public void doZipCompress(String inputFileName, String outputFileName){
try{
FileOutputStream fos = new FileOutputStream(outputFileName);
CheckedOutputStream cos = new CheckedOutputStream(fos, new Adler32());
ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(cos));
File inputFile = new File(inputFileName);
FileInputStream fis = new FileInputStream(inputFile);
BufferedInputStream bis = new BufferedInputStream(fis, BUFFER);
ZipEntry entry = new ZipEntry(inputFileName);
out.putNextEntry(entry);
int read;
byte b[] = new byte[BUFFER];
while((read = bis.read(b, 0, BUFFER)) != -1){
out.write(b, 0, read);
}
bis.close();
out.close();
}catch(FileNotFoundException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}
}
public void doZipDecompress(String inputFileName, String outputFileName){
try{
FileInputStream fis = new FileInputStream(inputFileName);
CheckedInputStream cis = new CheckedInputStream(fis, new Adler32());
ZipInputStream zis = new ZipInputStream(new BufferedInputStream(cis));
ZipEntry entry;
while((entry = zis.getNextEntry()) != null){
FileOutputStream fos = new FileOutputStream(outputFileName);
BufferedOutputStream bos = new BufferedOutputStream(fos, BUFFER);
int read;
byte b[] = new byte[BUFFER];
while((read = zis.read(b, 0, BUFFER)) != -1){
bos.write(b, 0, read);
}
bos.flush();
bos.close();
}
zis.close();
}catch(FileNotFoundException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}
}
因为现在在某一个方法里面只是需要一个FileInputStream作为参数传入来,现在压缩与解压缩可用的,但我还未将文件经过下面两个程序压缩,只是将原文件的FileInputStream读出然后传给这个参数,读FileInputStream的方法如下:
public FileInputStream getFileInputStream(String fileName){
FileInputStream is = null;
File file = new File(fileName);
try{
is = new FileInputStream(file);
}catch(FileNotFoundException e){
e.printStackTrace();
}
//我想在这里用压缩程序得到压缩后的文件流,再传回去!
//或者请提提建议怎样更方便实现!
return is;
}
以下是压缩与解压缩程序:
-----------------------------------------------------------
public void doZipCompress(String inputFileName, String outputFileName){
try{
FileOutputStream fos = new FileOutputStream(outputFileName);
CheckedOutputStream cos = new CheckedOutputStream(fos, new Adler32());
ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(cos));
File inputFile = new File(inputFileName);
FileInputStream fis = new FileInputStream(inputFile);
BufferedInputStream bis = new BufferedInputStream(fis, BUFFER);
ZipEntry entry = new ZipEntry(inputFileName);
out.putNextEntry(entry);
int read;
byte b[] = new byte[BUFFER];
while((read = bis.read(b, 0, BUFFER)) != -1){
out.write(b, 0, read);
}
bis.close();
out.close();
}catch(FileNotFoundException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}
}
public void doZipDecompress(String inputFileName, String outputFileName){
try{
FileInputStream fis = new FileInputStream(inputFileName);
CheckedInputStream cis = new CheckedInputStream(fis, new Adler32());
ZipInputStream zis = new ZipInputStream(new BufferedInputStream(cis));
ZipEntry entry;
while((entry = zis.getNextEntry()) != null){
FileOutputStream fos = new FileOutputStream(outputFileName);
BufferedOutputStream bos = new BufferedOutputStream(fos, BUFFER);
int read;
byte b[] = new byte[BUFFER];
while((read = zis.read(b, 0, BUFFER)) != -1){
bos.write(b, 0, read);
}
bos.flush();
bos.close();
}
zis.close();
}catch(FileNotFoundException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}
}
|
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();
∥关闭当前的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
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