Spring MVC 文件批量压缩下载

我看了很多网上的demo,先生成ZIP压缩文件,然后再下载。

我这里是生成ZIP文件流 进行下载。(核心代码没多少,就是一些业务代码)


	@RequestMapping(value = "/")
	public ResponseEntity<byte[]> downloadInterviewFile() throws Exception {
		 // 根据面试官主键编码 下载文件
		List<InterviewFile> interviewFiles =  this.interviewFileService.getAll(interviewfile);
		
		ByteArrayOutputStream byteOutPutStream = null;
		
		if (!interviewFiles.isEmpty()) {
			//单个文件名称
			String interviewFileName = "";
			//文件后缀
			String fileNameSuffix = "";
			//创建一个集合用于 压缩打包的参数
			List<Map<String, String>> parms = new ArrayList<>();
			//创建一个map集合
			Map<String, String> fileMaps =null;
			//得到存储文件盘符 例  D:
			String root = properties.getValue("upload.root");
			//创建一个字节输出流
			byteOutPutStream = new ByteArrayOutputStream();
			
			for (InterviewFile file : interviewFiles) {
				
				fileMaps = new HashMap<>();

				interviewFileName = file.getFileName();

				fileNameSuffix = file.getFileSuffix();
				//将单个存储路径放入
				fileMaps.put("filePath", root.concat(file.getFilePath()));
				//将单个文件名放入
				fileMaps.put("fileName", interviewFileName.concat("." + fileNameSuffix));
				//放入集合
				parms.add(fileMaps);
				
			}
			//压缩文件
			FileUtils.batchFileToZIP(parms, byteOutPutStream);	
		}
		
		
			HttpHeaders headers = new HttpHeaders();
			
			String fileName = null;
			try {
				fileName = new String("附件.zip".getBytes("UTF-8"), "ISO-8859-1");
			} catch (UnsupportedEncodingException e) {
				e.printStackTrace();
			}

			headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);

			headers.setContentDispositionFormData("attachment", fileName);// 文件名称
			
			ResponseEntity<byte[]> responseEntity = new ResponseEntity<byte[]>(byteOutPutStream.toByteArray(), headers, HttpStatus.CREATED);
			
			return responseEntity;

	}

工具类 

/**
	 * 文件批量压缩
	 * 
	 * @param parms
	 */
	public static void batchFileToZIP(List<Map<String, String>> parms, ByteArrayOutputStream byteOutPutStream) {

		ZipOutputStream zipOut = new ZipOutputStream(byteOutPutStream);

		FileInputStream inputStream = null;
		try {
			for (Map<String, String> value : parms) {
				// 文件路径
				inputStream = new FileInputStream(new File(value.get("filePath")));
				// 使用指定名称创建新的 ZIP 条目 (通俗点就是文件名)
				ZipEntry zipEntry = new ZipEntry(value.get("fileName"));
				// 开始写入新的 ZIP 文件条目并将流定位到条目数据的开始处
				zipOut.putNextEntry(zipEntry);

				byte[] b = new byte[1024];

				int length = 0;

				while ((length = inputStream.read(b)) != -1) {

					zipOut.write(b, 0, length);

				}
				zipOut.closeEntry();
			}
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		} finally {
			try {
                inputStream.close();
				zipOut.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

调用看不懂?那来个简单粗暴的

        @RequestMapping(value = "/")
	public ResponseEntity<byte[]> downloadInterviewFile() throws Exception {

		// ---------------------------压缩文件处理-------------------------------
		ByteArrayOutputStream byteOutPutStream = new ByteArrayOutputStream();

		// 创建一个集合用于 压缩打包的参数
		List<Map<String, String>> parms = new ArrayList<>();
		// 创建一个map集合
		Map<String, String> fileMaps = new HashMap<>();
		fileMaps.put("filePath", "D:/文件路径");
		fileMaps.put("fileName", "HRM-Package.txt");
		Map<String, String> fileMaps1 = new HashMap<>();
		fileMaps1.put("filePath", "D:/文件路径1");
		fileMaps1.put("fileName", "java.txt");
		// 放入集合
		parms.add(fileMaps);
		parms.add(fileMaps1);

		// 压缩文件
		FileUtils.batchFileToZIP(parms, byteOutPutStream);
		// ---------------------------压缩文件处理-------------------------------
		HttpHeaders headers = new HttpHeaders();

		String fileName = null;
		try {
			fileName = new String("附件.zip".getBytes("UTF-8"), "ISO-8859-1");
		} catch (UnsupportedEncodingException e) {
			e.printStackTrace();
		}

		headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);

		headers.setContentDispositionFormData("attachment", fileName);// 文件名称

		ResponseEntity<byte[]> responseEntity = new ResponseEntity<byte[]>(byteOutPutStream.toByteArray(), headers,
				HttpStatus.CREATED);

		return responseEntity;

	}

结果: 

 

  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 8
    评论
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值