Spring Boot 文件通过zip压缩包 批量下载

《一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码》点击传送门,即可获取!

List<CompletableFuture<Map<String, String>>> list = new ArrayList<>();

for (String sourceCode : sourceCodes.split(“,”)) {

CompletableFuture<Map<String, String>> future = favoriteService.exportFavoriteItemWordFile(sourceCode);

list.add(future);

}

CompletableFuture<Map<String, String>>[] completableFutures = list.toArray(new CompletableFuture[list.size()]);

CompletableFuture.allOf(completableFutures).join();

CompletableFuture.allOf().join(); 等待所有线程任务结束

文件导出方法调用:

@Async

@Override

public CompletableFuture<Map<String, String>> exportFavoriteItemWordFile(String sourceCode) throws IOException, URISyntaxException, InterruptedException {

Map<String, String> result = esDetailedService.exportDetailInfoDoc(sourceCode);

return CompletableFuture.completedFuture(result);

}

这里result 返回了文件在服务器上的存路径。可以通过future.get().get(“url”) 获取。

word 导出实现参考:使用POI 导出word模板文件

剩下的就是文件打包成zip 的解决了,这里提供一个工具类:

import java.io.*;

import java.util.ArrayList;

import java.util.List;

import java.util.zip.ZipEntry;

import java.util.zip.ZipOutputStream;

/**

  • @BelongsProject: exchange

  • @BelongsPackage: com.elens.util

  • @Author: xuweichao

  • @CreateTime: 2019-06-04 15:51

  • @Description: 文件压缩工具类

*/

public class ZipUtil {

private static final int BUFFER_SIZE = 2 * 1024;

/**

  • 压缩成ZIP 方法1

  • @param srcDir 压缩文件夹路径

  • @param out 压缩文件输出流

  • @param keepDirStructure 是否保留原来的目录结构,true:保留目录结构;

  •                     false:所有文件跑到压缩包根目录下(注意:不保留目录结构可能会出现同名文件,会压缩失败)
    
  • @throws RuntimeException 压缩失败会抛出运行时异常

*/

public static void toZip(String srcDir, OutputStream out, boolean keepDirStructure)

throws RuntimeException {

long start = System.currentTimeMillis();

ZipOutputStream zos = null;

try {

zos = new ZipOutputStream(out);

File sourceFile = new File(srcDir);

compress(sourceFile, zos, sourceFile.getName(), keepDirStructure);

long end = System.currentTimeMillis();

System.out.println(“压缩完成,耗时:” + (end - start) + " ms");

} catch (Exception e) {

throw new RuntimeException(“zip error from ZipUtils”, e);

} finally {

if (zos != null) {

try {

zos.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

}

/**

  • 压缩成ZIP 方法2

  • @param srcFiles 需要压缩的文件列表

  • @param out 压缩文件输出流

  • @throws RuntimeException 压缩失败会抛出运行时异常

*/

public static void toZip(List srcFiles, OutputStream out) throws RuntimeException {

long start = System.currentTimeMillis();

ZipOutputStream zos = null;

try {

zos = new ZipOutputStream(out);

for (File srcFile : srcFiles) {

byte[] buf = new byte[BUFFER_SIZE];

zos.putNextEntry(new ZipEntry(srcFile.getName()));

int len;

FileInputStream in = new FileInputStream(srcFile);

while ((len = in.read(buf)) != -1) {

zos.write(buf, 0, len);

}

zos.closeEntry();

in.close();

}

long end = System.currentTimeMillis();

System.out.println(“压缩完成,耗时:” + (end - start) + " ms");

} catch (Exception e) {

throw new RuntimeException(“zip error from ZipUtils”, e);

} finally {

if (zos != null) {

try {

zos.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

}

/**

  • 递归压缩方法

  • @param sourceFile 源文件

  • @param zos zip输出流

  • @param name 压缩后的名称

  • @param keepDirStructure 是否保留原来的目录结构,true:保留目录结构;

  •                     false:所有文件跑到压缩包根目录下(注意:不保留目录结构可能会出现同名文件,会压缩失败)
    
  • @throws Exception

*/

private static void compress(File sourceFile, ZipOutputStream zos, String name,

boolean keepDirStructure) throws Exception {

byte[] buf = new byte[BUFFER_SIZE];

if (sourceFile.isFile()) {

// 向zip输出流中添加一个zip实体,构造器中name为zip实体的文件的名字

zos.putNextEntry(new ZipEntry(name));

// copy文件到zip输出流中

int len;

FileInputStream in = new FileInputStream(sourceFile);

while ((len = in.read(buf)) != -1) {

zos.write(buf, 0, len);

}

// Complete the entry

zos.closeEntry();

in.close();

} else {

File[] listFiles = sourceFile.listFiles();

if (listFiles == null || listFiles.length == 0) {

// 需要保留原来的文件结构时,需要对空文件夹进行处理

if (keepDirStructure) {

// 空文件夹的处理

zos.putNextEntry(new ZipEntry(name + “/”));

// 没有文件,不需要文件的copy

zos.closeEntry();

}

写在最后

学习技术是一条慢长而艰苦的道路,不能靠一时激情,也不是熬几天几夜就能学好的,必须养成平时努力学习的习惯。所以:贵在坚持!

最后再分享的一些BATJ等大厂20、21年的面试题,把这些技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,上面只是以图片的形式给大家展示一部分。

蚂蚁金服三面直击面试官的Redis三连,Redis面试复习大纲在手,不慌

Mybatis面试专题

蚂蚁金服三面直击面试官的Redis三连,Redis面试复习大纲在手,不慌

MySQL面试专题

蚂蚁金服三面直击面试官的Redis三连,Redis面试复习大纲在手,不慌

并发编程面试专题

《一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码》点击传送门,即可获取!
这些技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,上面只是以图片的形式给大家展示一部分。

[外链图片转存中…(img-UObKebAz-1714656229490)]

Mybatis面试专题

[外链图片转存中…(img-zTARHH5y-1714656229490)]

MySQL面试专题

[外链图片转存中…(img-EZLOt92m-1714656229491)]

并发编程面试专题

《一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码》点击传送门,即可获取!

  • 22
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring Boot 中实现分片下载 Zip 压缩包文件可以采用以下步骤: 1. 在 Controller 中定义一个用于下载 Zip 压缩包的接口方法,并在方法上添加注解 @GetMapping("/download"),其中 "/download" 是下载接口的路径。 2. 在方法中获取 Zip 压缩包文件路径,并使用 java.io.File 类创建一个文件对象。 3. 使用 java.util.zip.ZipOutputStream 类创建一个 Zip 压缩流对象,并使用 java.io.FileInputStream 类创建一个文件输入流对象。 4. 使用 Zip 压缩流对象将文件输入流对象写入 Zip 压缩包中。 5. 关闭文件输入流和 Zip 压缩流对象。 6. 在方法中使用 javax.servlet.http.HttpServletResponse 类设置下载文件的响应头,包括 Content-Disposition、Content-Type 和 Content-Length。 7. 使用 java.io.BufferedInputStream 类和 java.io.BufferedOutputStream 类创建一个缓冲输入流对象和一个缓冲输出流对象。 8. 使用缓冲输入流对象将 Zip 压缩包写入缓冲输出流对象。 9. 关闭缓冲输入流和缓冲输出流对象。 10. 返回 null,结束方法。 以下是一个示例代码: ```java @GetMapping("/download") public ResponseEntity<byte[]> download() throws IOException { String filePath = "path/to/zip/file.zip"; File file = new File(filePath); FileInputStream fis = new FileInputStream(file); ZipOutputStream zos = new ZipOutputStream(new BufferedOutputStream(response.getOutputStream())); // 将文件写入 Zip 压缩包ZipEntry zipEntry = new ZipEntry(file.getName()); zos.putNextEntry(zipEntry); byte[] buffer = new byte[1024]; int len = 0; while ((len = fis.read(buffer)) != -1) { zos.write(buffer, 0, len); } fis.close(); zos.closeEntry(); zos.close(); // 设置响应头 HttpHeaders headers = new HttpHeaders(); headers.setContentDispositionFormData("attachment", file.getName()); headers.setContentType(MediaType.APPLICATION_OCTET_STREAM); headers.setContentLength(file.length()); // 返回响应体 return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file), headers, HttpStatus.OK); } ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值