java实现文件打包压缩输出到浏览器下载
程序员文章站
2022-03-01 21:17:15
文件打包压缩输出到浏览器下载java批量下载文件打包压缩工具类,输出到浏览器下载,可以自己改名。一、工具类:入参 :文件list ;打包后的名字 ;响应到浏览器/** * 功能:压缩多个文件,...
文件打包压缩输出到浏览器下载
java批量下载文件打包压缩工具类,输出到浏览器下载,可以自己改名。
一、工具类:
入参 :文件list ;打包后的名字 ;响应到浏览器
/** * 功能:压缩多个文件,输出压缩后的zip文件流 * * @param srcfile:源文件列表 * @param zipfilename:压缩后的文件名 * @param response: http响应 */ public void zipfiles(list<file> srcfile, string zipfilename, httpservletresponse response) throws ioexception { byte[] buf = new byte[1024]; // 获取输出流 bufferedoutputstream bos = null; try { bos = new bufferedoutputstream(response.getoutputstream()); } catch (ioexception e) { e.printstacktrace(); } fileinputstream in = null; zipoutputstream out = null; try { response.reset(); // 重点突出 // 不同类型的文件对应不同的mime类型 response.setcontenttype("application/x-msdownload"); response.setcharacterencoding("utf-8"); response.setheader("content-disposition", "attachment;filename=" + zipfilename + ".zip"); // zipoutputstream类:完成文件或文件夹的压缩 out = new zipoutputstream(bos); for (int i = 0; i < srcfile.size(); i++) { in = new fileinputstream(srcfile.get(i)); // 给列表中的文件单独命名 out.putnextentry(new zipentry(srcfile.get(i).getname())); int len = -1; while ((len = in.read(buf)) != -1) { out.write(buf, 0, len); } } out.close(); bos.close(); log.info("压缩完成."); } catch (exception e) { e.printstacktrace(); } finally { if (in != null) in.close(); if (out != null) out.close(); } }
二、调用
zipfiles(files, zipname, response);
生成zip文件并浏览器导出
总结一下,关于java下载zip文件并导出的方法,浏览器导出。
string downloadname = "下载文件名称.zip"; downloadname = browsercharcodeutils.browsercharcodefun(request, downloadname);//下载文件名乱码问题解决 //将文件进行打包下载 try { outputstream out = response.getoutputstream(); byte[] data = createzip("/filestorage/download");//服务器存储地址 response.reset(); response.setheader("content-disposition","attachment;filename="+downloadname); response.addheader("content-length", ""+data.length); response.setcontenttype("application/octet-stream;charset=utf-8"); ioutils.write(data, out); out.flush(); out.close(); } catch (exception e) { e.printstacktrace(); }
获取下载zip文件流
public byte[] createzip(string srcsource) throws exception{ bytearrayoutputstream outputstream = new bytearrayoutputstream(); zipoutputstream zip = new zipoutputstream(outputstream); //将目标文件打包成zip导出 file file = new file(srcsource); a(zip,file,""); ioutils.closequietly(zip); return outputstream.tobytearray(); }
public void a(zipoutputstream zip, file file, string dir) throws exception { //如果当前的是文件夹,则进行进一步处理 if (file.isdirectory()) { //得到文件列表信息 file[] files = file.listfiles(); //将文件夹添加到下一级打包目录 zip.putnextentry(new zipentry(dir + "/")); dir = dir.length() == 0 ? "" : dir + "/"; //循环将文件夹中的文件打包 for (int i = 0; i < files.length; i++) { a(zip, files[i], dir + files[i].getname()); //递归处理 } } else { //当前的是文件,打包处理 //文件输入流 bufferedinputstream bis = new bufferedinputstream(new fileinputstream(file)); zipentry entry = new zipentry(dir); zip.putnextentry(entry); zip.write(fileutils.readfiletobytearray(file)); ioutils.closequietly(bis); zip.flush(); zip.closeentry(); } }
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。