java 生成zip如法打开_java后台生成zip打包文件

/***

*@paramzipFile 压缩包文件对象

*@paramlistKey 压缩的图片物理地址

*@return

*/

public static boolean packageZip(File zipFile,ListlistKey){//图片打包操作

ZipOutputStream zipStream = null;

FileInputStream zipSource= null;

BufferedInputStream bufferStream= null;try{

zipStream= new ZipOutputStream(new FileOutputStream(zipFile));//用这个构造最终压缩包的输出流//zipSource = null;//将源头文件格式化为输入流

for(String picKey : listKey) {

File file= newFile(picKey);

logger.info("uppic zipFile: " +picKey );

zipSource= newFileInputStream(file);byte[] bufferArea = new byte[1024 * 10];//读写缓冲区//压缩条目不是具体独立的文件,而是压缩包文件列表中的列表项,称为条目,就像索引一样

ZipEntry zipEntry = newZipEntry(file.getName());

zipStream.putNextEntry(zipEntry);//定位到该压缩条目位置,开始写入文件到压缩包中

bufferStream= new BufferedInputStream(zipSource, 1024 * 10);//输入缓冲流

int read = 0;//在任何情况下,b[0] 到 b[off] 的元素以及 b[off+len] 到 b[b.length-1]//的元素都不会受到影响。这个是官方API给出的read方法说明,经典!

while ((read = bufferStream.read(bufferArea, 0, 1024 * 10)) != -1) {

zipStream.write(bufferArea,0, read);

}

}

}catch(Exception e) {//TODO: handle exception

logger.error("zipStream下载文件报错:", e);return false;

}finally{//关闭流

try{if (null !=bufferStream)

bufferStream.close();if (null !=zipStream)

zipStream.close();if (null !=zipSource)

zipSource.close();

}catch(IOException e) {//TODO Auto-generated catch block//e.printStackTrace();

logger.error("close stream下载文件报错:", e);return false;

}

}return true;

}//test code

List listKey = new ArrayList();

listKey.add("C:/AtCarPic22/2014-7-10/101165903/0.png");

listKey.add("C:/AtCarPic22/2014-7-10/101165903/3.png");

java.io.File zipFile= new java.io.File("D:/DownLoad4.zip");//最终打包的压缩包

System.out.println("zipFile exists: " +zipFile.exists());

System.out.println("zipFile size: " +zipFile.length());

packageZip(zipFile,listKey);

System.out.println("zipFile exists2: " +zipFile.exists());

System.out.println("zipFile size: " + zipFile.length());

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值