java 将多个文件打包成压缩包下载
java 将多个文件打包成压缩包下载
public void plistDownLoad(HttpServletResponse response) throws Exception {
List<String> paths = new ArrayList<>();
paths.add("C:\\Users\\ysrjs\\Desktop\\战网.txt");
paths.add("C:\\Users\\ysrjs\\Desktop\\宏.txt");
if (paths.size() != 0) {
String zipFilePath = "D:\\测试打包下载";
//压缩包文件夹
File zipFile = new File(zipFilePath);
if(!zipFile.exists() && !zipFile.isDirectory()){
zipFile.mkdirs();
}
//创建压缩文件
File zipFile2 = new File(zipFilePath+"\\"+"下载文件.zip");
if(!zipFile2.exists()){
zipFile2.createNewFile();
}
// 创建压缩输出流
ZipOutputStream zipOut = new ZipOutputStream(new FileOutputStream(zipFile2));
// 循环调用压缩文件方法 将每个文件压缩到 压缩文件中
for (String path : paths) {
// 该方法在下面定义All
fileAllToZip(path, zipOut);
}
// 压缩完成后,关闭压缩流
zipOut.close();
// //拼接下载默认名称并转为ISO-8859-1格式
// String fileName = new String(("我的压缩文件.zip").getBytes(),"ISO-8859-1");
// response.setHeader("Content-Disposition", "attchment;filename="+fileName);
//
// //该流不可以手动关闭,手动关闭下载会出问题,下载完成后会自动关闭
// ServletOutputStream outputStream = response.getOutputStream();
// FileInputStream inputStream = new FileInputStream(zipFile2);
// // 如果是SpringBoot框架,在这个路径
// // org.apache.tomcat.util.http.fileupload.IOUtils产品
// // 否则需要自主引入apache的 commons-io依赖
// // copy方法为文件复制,在这里直接实现了下载效果
// IOUtils.copy(inputStream, outputStream);
//
// // 关闭输入流
// inputStream.close();
//下载完成之后,删掉这个zip包
// File fileTempZip = new File(zipFilePath);
// zipFile2.delete();
}
}
public static void fileAllToZip(String filePath,ZipOutputStream zipOut) throws IOException {
// 需要压缩的文件
File file = new File(filePath);
// 获取文件名称,如果有特殊命名需求,可以将参数列表拓展,传fileName
String fileName = file.getName();
FileInputStream fileInput = new FileInputStream(filePath);
// 缓冲
byte[] bufferArea = new byte[1024 * 10];
BufferedInputStream bufferStream = new BufferedInputStream(fileInput, 1024 * 10);
// 将当前文件作为一个zip实体写入压缩流,fileName代表压缩文件中的文件名称
zipOut.putNextEntry(new ZipEntry(fileName));
int length = 0;
// 最常规IO操作,不必紧张
while ((length = bufferStream.read(bufferArea, 0, 1024 * 10)) != -1) {
zipOut.write(bufferArea, 0, length);
}
//关闭流
fileInput.close();
// 需要注意的是缓冲流必须要关闭流,否则输出无效
bufferStream.close();
// 压缩流不必关闭,使用完后再关
}
原文作者:佛了菜鸟
原文地址: https://blog.csdn.net/weixin_41346864/article/details/117996679
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/weixin_41346864/article/details/117996679
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章