当前位置: 首页 > news >正文

将数据赋值到多个文档里,并将多个word放入压缩包并下载

<!--        poi-tl导出word文档--><dependency><groupId>com.deepoove</groupId><artifactId>poi-tl</artifactId><version>1.12.1</version></dependency>

以下是需要的实体类

package com.dream.domain.vo;import lombok.Data;import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;@Data
public class QuestionVo  implements Serializable {private String quesTitle;private int type;private String numb;private ArrayList<AnwserVo> anwser;
}
package com.dream.domain.vo;import lombok.Data;import java.io.Serializable;@Data
public class AnwserVo  implements Serializable {private String content;private int type;private int supplementType;private String supplement;
}

以下是实现逻辑

package com.dream.controller.file;import com.deepoove.poi.XWPFTemplate;
import com.dream.common.BussinessException;
import com.dream.common.Result;
import com.dream.domain.vo.AnwserVo;
import com.dream.domain.vo.PageVo;
import com.dream.domain.vo.QuestionVo;
import com.dream.domain.vo.Student;
import com.dream.service.admin.QuestionnaireAdminService;
import com.dream.service.admin.UserMangeAdminService;
import com.dream.utils.Utils;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import freemarker.template.Configuration;
import freemarker.template.Template;
import org.apache.commons.io.FilenameUtils;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.xssf.streaming.SXSSFSheet;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.*;import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.OutputStream;
import java.net.URLEncoder;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;@RestController
@RequestMapping("file")
public class FileUploadController {private final ResourceLoader resourceLoader;@Autowiredprivate QuestionnaireAdminService questionnaireAdminService;// 通过构造函数注入ResourceLoaderpublic FileUploadController(ResourceLoader resourceLoader) {this.resourceLoader = resourceLoader;}/*** 将数据赋值到多个文档里,并将多个word放入压缩包并下载* @param idsString* @param response*/@GetMapping("/exportBatch")public void exportBatchStudents(@RequestParam("idsString") String idsString, HttpServletResponse response) {List<Integer> ids = new ArrayList<>();ObjectMapper mapper = new ObjectMapper();try {if(idsString != null && !"".equals(idsString)){ids = mapper.readValue(idsString, new TypeReference<List<Integer>>() {});}} catch (JsonProcessingException e) {throw new BussinessException("导出问卷调查word列表压缩包,传入参数有误");}String name = Utils.dateToString("yyyy-MM-dd");try (ZipOutputStream zos = new ZipOutputStream(response.getOutputStream())) {response.setContentType("application/zip");response.setCharacterEncoding("UTF-8");String zipName = URLEncoder.encode(name+" 问卷调查.zip", StandardCharsets.UTF_8.toString());response.setHeader(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename*=UTF-8''" + zipName);for (Integer id : ids) {try {// 1. 获取模板资源Resource resource = resourceLoader.getResource("classpath:templates/question.docx");if (!resource.exists()) throw new FileNotFoundException("模板文件未找到");// 2. 查询数据Map<String, ArrayList<QuestionVo>> result = questionnaireAdminService.queryUserQuestionnaireById(id);ArrayList<QuestionVo> list = result.get("subject");Map<String, String> data = new HashMap<>();// 3. 填充数据(完整迁移原有逻辑)if (list != null && !list.isEmpty()) {Map<String, Object> nameMap = questionnaireAdminService.queryNameByQuestionnaireId(id);String fileName = (nameMap != null && nameMap.get("name") != null) ?(String) nameMap.get("name") : "未知用户_" + id;// 核心数据填充逻辑(与单个导出完全一致)for (QuestionVo questionVo : list) {List<AnwserVo> anwser = questionVo.getAnwser();switch (questionVo.getNumb()) {case "one":for (int j = 0; j < anwser.size(); j++) {AnwserVo anwserVo = anwser.get(j);if (anwserVo.getType() == 1) {data.put("one_" + j, "√");}}break;case "two":for (int j = 0; j < anwser.size(); j++) {AnwserVo anwserVo = anwser.get(j);if (anwserVo.getType() == 1) {data.put("two_" + j, "√");}if (anwserVo.getSupplementType() == 1) {data.put("two_supplement", anwserVo.getSupplement());}}break;case "three":for (int j = 0; j < anwser.size(); j++) {AnwserVo anwserVo = anwser.get(j);if (anwserVo.getType() == 1) {data.put("three_" + j, "√");}}break;case "four":for (int j = 0; j < anwser.size(); j++) {AnwserVo anwserVo = anwser.get(j);if (anwserVo.getType() == 1) {data.put("four_" + j, "√");}if (anwserVo.getSupplementType() == 1) {data.put("four_supplement", anwserVo.getSupplement());}}break;case "five":for (int j = 0; j < anwser.size(); j++) {AnwserVo anwserVo = anwser.get(j);if (anwserVo.getType() == 1) {data.put("five_" + j, "√");}}break;case "six":for (int j = 0; j < anwser.size(); j++) {AnwserVo anwserVo = anwser.get(j);if (anwserVo.getType() == 1) {data.put("six_" + j, "√");}if (anwserVo.getSupplementType() == 1) {data.put("six_supplement", anwserVo.getSupplement());}}break;}}// 4. 生成文档并写入ZIPtry (XWPFTemplate template = XWPFTemplate.compile(resource.getInputStream()).render(data)) {String entryName = URLEncoder.encode(fileName + ".docx", "UTF-8").replaceAll("\\+", "%20");zos.putNextEntry(new ZipEntry(entryName));template.write(zos);zos.closeEntry();}}} catch (Exception e) {// 继续处理下一个问卷}}} catch (IOException e) {throw new RuntimeException("压缩包生成失败: " + e.getMessage(), e);}}}
    /*** 查询用户的问卷调查通过id   service层* @return*/@Overridepublic Map<String, ArrayList<QuestionVo>> queryUserQuestionnaireById(Integer id) {try {Map<String, Object> map1 = questionnaireAdminMapper.queryUserQuestionnaireById(id);if (map1 == null || map1.get("content") == null) {return Collections.singletonMap("subject", new ArrayList<>());}ObjectMapper objectMapper = new ObjectMapper();String subject = (String) map1.get("content");// 使用 TypeReference 指定泛型类型Map<String, ArrayList<QuestionVo>> map2 = objectMapper.readValue(subject,new TypeReference<Map<String, ArrayList<QuestionVo>>>() {});return map2;} catch (JsonProcessingException e) {throw new BussinessException("问卷调查转化异常");}}
    /*** 查询用户的问卷调查通过id  Mapper* @return*/@Select("select content from module_user_questionnaire where id = #{id}")Map queryUserQuestionnaireById(@Param("id") Integer id);

以下是导出模板

9、是否对中医药文化感兴趣?
A. 非常感兴趣  {{one_0}}
B.一般         {{one_1}}
C.不感兴趣     {{one_2}}10、想通过中医药元宇宙学习到什么知识?
A. 中医药基本理论  {{two_0}}
B.中医药临床知识   {{two_1}}
C.针灸推拿技术     {{two_2}}
D.食疗养生知识     {{two_3}}
E.其他,请填写!     {{two_4}}  {{two_supplement}}11、之前是否学习过中医药文化?
A.是  {{three_0}}
B.否  {{three_1}}12、每天入睡时间是_-点,睡眠时长为_-小时
A.21:00-23:00,7-8小时  {{four_0}}
B.23:00-1:00,6-7小时   {{four_1}}
C.1:00-3:00,5-6小时    {{four_2}}
E.其他,请填写:      {{four_3}}  {{four_supplement}}13、认为自己健康吗?
A. 非常健康  {{five_0}}
B.一般       {{five_1}}
C.不健康     {{five_2}}14、对健康的期许(可多选)
A. 身体健康,不生病  {{six_0}}
B.精神健康,心情愉快  {{six_1}}
C.饮食健康,胃口好、吃饭香  {{six_2}}
D.运动健康,体能充沛  {{six_3}}
E.其他,请填写:  {{six_4}}  {{six_supplement}}

http://www.xdnf.cn/news/1394767.html

相关文章:

  • 非标设计 机架模板 misumi 设计组合案例
  • 小康AI家庭医生,亮相2025WteamAI创客节!
  • 【51单片机】【protues仿真】 基于51单片机智能视力保护台灯系统
  • 13 SQL进阶-InnoDB引擎(8.23)
  • Elasticsearch 9.X 使用推理 API 进行语义搜索
  • 2025年06月 Scratch 图形化(一级)真题解析#中国电子学会#全国青少年软件编程等级考试
  • 《跳出“技术堆砌”陷阱,构建可演进的软件系统》
  • opencv基础学习与实战之轮廓分析与模板匹配(4)
  • Wi-Fi 时延与掉包的关键因素全解析
  • 整理python接口自动化相关——10、自动考虑点(待续)
  • 【51单片机定时1秒中断控制流水灯方向】2022-11-14
  • 实现动态数组
  • 听听广播 安卓网络收音机v2.1.6 支持定时闹钟回听各地电台
  • MySQL高频问题:事务及慢SQL优化全解析
  • 今天聊聊支付里的三个小概念:同名充值、非同代付和 D0。
  • 第0记 cutlass 介绍及入门编程使用
  • Go初级之五:结构体与方法
  • 【leetcode】114. 二叉树展开为链表
  • 【Rust】 6. 字符串学习笔记
  • app怎么防止被攻击被打有多少种防护方式?
  • 税务岗位能力提升培训课程推荐
  • 达梦数据库-数据缓冲区 (二)
  • 【Flask】测试平台开发,产品管理实现编辑功能-第六篇
  • 接吻数问题:从球体堆叠到高维空间的数学奥秘
  • 机器学习 - Kaggle项目实践(5)Quora Question Pairs 文本相似
  • 栈和队列OJ习题
  • 佳易王钓场计时计费系统:全方位赋能钓场智能化管理,软件操作教程
  • vue在函数内部调用onMounted
  • 2025年热门职业资格证书分析
  • Rust 登堂 之 深入Rust 类型(六)