当前位置: 编程技术>java/j2ee
java压缩多个文件并且返回流示例
来源: 互联网 发布时间:2014-11-04
本文导语: 这个类可以压缩多个文件并且返回流,在程序中可以再操作返回的流做其它功能,比如验证MD5,下面看代码吧 代码如下:/*** 方法描述:测试类*/public class TestFileStream{ //文件和压缩包存储的位置StringtempFilePath="C:/temp/"ListfileList=ne...
这个类可以压缩多个文件并且返回流,在程序中可以再操作返回的流做其它功能,比如验证MD5,下面看代码吧
代码如下:
/**
* 方法描述:测试类
*/
public class TestFileStream{
//文件和压缩包存储的位置
StringtempFilePath="C:/temp/"
ListfileList=newArrayList();
fileList.add(tempFilePath+"file1.txt");
fileList.add(tempFilePath+"file2.png");
fileList.add(tempFilePath+"file3.xls");
//生成的压缩包名称
StringzipName="fileData";
//返回流
ByteArrayOutputStreamoutputStream=fileToZip(fileList,fileData,tempFilePath);
//页面输入压缩包流
byte[]buffer=outputStream.toByteArray();
//清空response
response.reset();
//设置response的Header
response.addHeader("Content-Disposition",
"attachment;filename="+
newString(("dataFile.zip").getBytes("gb2312"),"ISO8859-1"));
response.addHeader("Content-Length",""+outputStream.size());
toClient=newBufferedOutputStream(response.getOutputStream());
response.setContentType("application/octet-stream");
toClient.write(buffer);
toClient.flush();
}
/**
*方法描述:将多个文件压缩成zip包
*/
publicByteArrayOutputStreamfileToZip(ListfileList,StringzipName,StringtempFilePath){
byte[]buffer=newbyte[1024];
ZipOutputStreamout=null;
try{
out=newZipOutputStream(newFileOutputStream(tempFilePath+zipName+".zip"));
Listfiledata=newArrayList();
for(inti=0,len=fileList.size();i