Springboot 导出word,动态填充表格数据

简介: Springboot 导出word,动态填充表格数据

背景

本文将给大家带来如何导入数据到word文档中,固定传值和动态制作表格传值等。


依赖:

        <!-- word导出 -->
        <dependency>
            <groupId>com.deepoove</groupId>
            <artifactId>poi-tl</artifactId>
            <version>1.7.3</version>
        </dependency>
        <!--  上面需要的依赖-->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>4.1.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml-schemas</artifactId>
            <version>4.1.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>4.1.2</version>
        </dependency>
        <dependency>
            <groupId>com.deepoove</groupId>
            <artifactId>poi-tl</artifactId>
            <version>1.9.1</version>
        </dependency>

创建word模板:

说明:{{ }} 这个是用来做占位符的,后续代码中替换值。

如果导出的数据是个集合list,那么在你的表格标题的第一个单元格输入{{list}}占位符,下面空白单位元是用来占位集合中元素key的,占位符是:[]  如图

代码实例:

public void getStandingBook(String activityId, HttpServletResponse response, HttpServletRequest request) {
        try {
            //获取文件流
            InputStream stream = getClass().getClassLoader().getResourceAsStream("static/word.docx");
            //获取临时文件
            File file = new File("static/word.docx");
            //将读取到的类容存储到临时文件中,后面就可以用这个临时文件访问了
            FileUtils.copyInputStreamToFile(stream, file);
            //这个时候再去获取证书的文件路径 就可以正常获取了
            String filePath = file.getAbsolutePath();
 
            QueryWrapper<TActivity> tActivityQueryWrapper = new QueryWrapper<>();
            tActivityQueryWrapper.eq("uuid", activityId);
            tActivityQueryWrapper.eq("status", "0");
            TActivity tActivity = tActivityService.getOne(tActivityQueryWrapper);
            if (tActivity == null) {
                throw new CustomException("导出失败,活动不存在!");
            }
            List<Map> detailList = new ArrayList<>();
            QueryWrapper<TActivityBudget> budgetQueryWrapper = new QueryWrapper<>();
            budgetQueryWrapper.eq("activity_id", tActivity.getUuid());
            budgetQueryWrapper.eq("status", "0");
            List<TActivityBudget> budgetList = activityBudgetService.list(budgetQueryWrapper);
            if (!CollectionUtils.isEmpty(budgetList)) {
                budgetList.forEach(x -> {
                    Map map = new HashMap();
                    map.put("feeName", x.getFeeName());
                    map.put("purpose", x.getPurpose());
                    map.put("price", x.getPrice());
                    map.put("number", x.getNumber());
                    map.put("totalPrice", x.getTotalPrice());
                    map.put("remarks", x.getRemarks());
                    detailList.add(map);
                });
            }
            QueryWrapper<TActivityProfessional> professionalQueryWrapper = new QueryWrapper<>();
            professionalQueryWrapper.eq("activity_id", tActivity.getUuid());
            professionalQueryWrapper.eq("status", "0");
            List<TActivityProfessional> professionalList = activityProfessionalService.list(professionalQueryWrapper);
            if (!CollectionUtils.isEmpty(professionalList)) {
                professionalList.forEach(x -> {
                    Map map = new HashMap();
                    map.put("feeName", x.getPersonName());
                    map.put("purpose", "社会工作者/专业老师补贴");
                    map.put("price", x.getPrice());
                    map.put("number", "1");
                    map.put("totalPrice", x.getPrice());
                    map.put("remarks", x.getRemarks());
                    detailList.add(map);
                });
            }
            if (detailList.size() == 0) {
                Map map = new HashMap();
                map.put("feeName", "");
                map.put("purpose", "");
                map.put("price", "");
                map.put("number", "");
                map.put("totalPrice", "");
                map.put("remarks", "");
                detailList.add(map);
            }
            //计算合计
            double totalNum = 0d;
            if (!CollectionUtils.isEmpty(detailList)) {
                totalNum = detailList.stream().mapToDouble(x -> Double.valueOf(x.get("totalPrice").toString())).sum();
            }
            log.info("合计:{}", totalNum);
            //处理图片
            String[] arr = tActivity.getActivityReviewUrl().split(",");
            List<Map> pic = new ArrayList<>();
            if (arr != null && arr.length > 0) {
                for (String str : arr) {
                    File ff = aliyunCloudStorageService.getFileByUrl(str);
                    BufferedImage bi = null;
                    try {
                        bi = ImageIO.read(ff);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                    int width = bi.getWidth(); // 像素
                    if (width > 500) {
                        width = 500;
                    }
                    int height = bi.getHeight(); // 像素
                    if (height > 500) {
                        height = 500;
                    }
                    Map picMap = new HashMap();
                    picMap.put("urlImg", Pictures.ofUrl(str, PictureType.JPEG).size(width, height).create());
                    pic.add(picMap);
                    System.out.println(str);
                    bi.flush();
                }
            }
            //渲染表格
            HackLoopTableRenderPolicy policy = new HackLoopTableRenderPolicy();
            Configure config = Configure.newBuilder().bind("detailList", policy).build();
            double finalTotalNum = totalNum;
            XWPFTemplate template = XWPFTemplate.compile(filePath, config).render(
                    new HashMap<String, Object>() {{
                        put("activityName", tActivity.getActivityName());
                        put("activityBackground", tActivity.getActivityBackground());
                        put("startTime", DateUtils.getStringDate(tActivity.getStartTime()));
                        put("endTime", DateUtils.getStringDate(tActivity.getEndTime()));
                        put("activityContent", tActivity.getActivityContent());
                        put("distinctidName", tActivity.getDistinctidName());
                        put("activityLimit", tActivity.getActivityLimit());
                        put("organizer", tActivity.getOrganizer());
                        put("nowDate", DateUtils.getStringDate(new Date()));
                        put("totalNum", finalTotalNum);
                        put("activityAddress", tActivity.getActivityAddress());
                        put("activityReviewWeb", tActivity.getActivityReviewWeb());
                        put("detailList", detailList);
                        put("picList", pic);
                    }}
            );
            //=================生成文件保存在本地D盘某目录下=================
            //String temDir="D:/mimi/"+File.separator+"file/word/"; ;//生成临时文件存放地址
            //生成文件名
            Long time = new Date().getTime();
            // 生成的word格式
            String fileName = tActivity.getActivityName() + time + ".docx";
            System.out.println("文件名:" + fileName);
            //=================生成word到设置浏览默认下载地址=================
            //解决文件下载名称变为 ____下划线的BUG
            //针对IE或者以IE为内核的浏览器:
            String userAgent = request.getHeader("User-Agent");
            if (userAgent.contains("MSIE") || userAgent.contains("Trident")) {
                fileName = java.net.URLEncoder.encode(fileName, StandardCharsets.UTF_8.toString());
            } else {
                //非IE浏览器:
                fileName = new String(fileName.getBytes(StandardCharsets.UTF_8), StandardCharsets.ISO_8859_1);
                // 设置强制下载不打开
                response.setContentType("application/force-download");
                // 设置文件名
                response.addHeader("Content-Disposition", "attachment;fileName=" + fileName);
                response.setCharacterEncoding("UTF-8");
                OutputStream out = response.getOutputStream();
                template.write(out);
                out.flush();
                out.close();
                template.close();
            }
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

重点代码在这里:

 //渲染表格
            HackLoopTableRenderPolicy policy = new HackLoopTableRenderPolicy();
            Configure config = Configure.newBuilder().bind("detailList", policy).build();
            double finalTotalNum = totalNum;
            XWPFTemplate template = XWPFTemplate.compile(filePath, config).render(
                    new HashMap<String, Object>() {{
                        put("activityName", tActivity.getActivityName());
                        put("activityBackground", tActivity.getActivityBackground());
                        put("startTime", DateUtils.getStringDate(tActivity.getStartTime()));
                        put("endTime", DateUtils.getStringDate(tActivity.getEndTime()));
                        put("activityContent", tActivity.getActivityContent());
                        put("distinctidName", tActivity.getDistinctidName());
                        put("activityLimit", tActivity.getActivityLimit());
                        put("organizer", tActivity.getOrganizer());
                        put("nowDate", DateUtils.getStringDate(new Date()));
                        put("totalNum", finalTotalNum);
                        put("activityAddress", tActivity.getActivityAddress());
                        put("activityReviewWeb", tActivity.getActivityReviewWeb());
                        put("detailList", detailList);
                        put("picList", pic);
                    }}
            );

关于向word文档中插入多张图片:

代码:

 //处理图片
            String[] arr = tActivity.getActivityReviewUrl().split(",");
            List<Map> pic = new ArrayList<>();
            if (arr != null && arr.length > 0) {
                for (String str : arr) {
                    //File ff = aliyunCloudStorageService.getFileByUrl(str);
                    BufferedImage bi = null;
                    try {
                        bi = ImageIO.read(ff);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                    //int width = bi.getWidth(); // 像素
                    //if (width > 500) {
                    //    width = 500;
                    //}
                    //int height = bi.getHeight(); // 像素
                    //if (height > 500) {
                    //    height = 500;
                    //}
                    Map picMap = new HashMap();
                    picMap.put("urlImg", Pictures.ofUrl(str, PictureType.JPEG).size(width, height).create());
                    pic.add(picMap);
                    System.out.println(str);
                    bi.flush();
                }
            }

文档中插入多张图片的占位符是:{{?picList}}{{@urlImg}}{{/picList}}    picList是你集合key  ,urlImg是集合内元素

导出结果:

相关文章
|
16天前
|
前端开发 Java API
SpringBoot整合Flowable【06】- 查询历史数据
本文介绍了Flowable工作流引擎中历史数据的查询与管理。首先回顾了流程变量的应用场景及其局限性,引出表单在灵活定制流程中的重要性。接着详细讲解了如何通过Flowable的历史服务API查询用户的历史绩效数据,包括启动流程、执行任务和查询历史记录的具体步骤,并展示了如何将查询结果封装为更易理解的对象返回。最后总结了Flowable提供的丰富API及其灵活性,为后续学习驳回功能做了铺垫。
27 0
SpringBoot整合Flowable【06】- 查询历史数据
|
3月前
|
人工智能 自然语言处理 前端开发
SpringBoot + 通义千问 + 自定义React组件:支持EventStream数据解析的技术实践
【10月更文挑战第7天】在现代Web开发中,集成多种技术栈以实现复杂的功能需求已成为常态。本文将详细介绍如何使用SpringBoot作为后端框架,结合阿里巴巴的通义千问(一个强大的自然语言处理服务),并通过自定义React组件来支持服务器发送事件(SSE, Server-Sent Events)的EventStream数据解析。这一组合不仅能够实现高效的实时通信,还能利用AI技术提升用户体验。
313 2
|
16天前
|
存储 前端开发 Java
SpringBoot整合Flowable【05】- 使用流程变量传递业务数据
本文介绍了如何使用Flowable的流程变量来管理绩效流程中的自定义数据。首先回顾了之前的简单绩效流程,指出现有流程缺乏分数输入和保存步骤。接着详细解释了流程变量的定义、分类(运行时变量和历史变量)及类型。通过具体代码示例展示了如何在绩效流程中插入全局和局部流程变量,实现各节点打分并维护分数的功能。最后总结了流程变量的使用场景及其在实际业务中的灵活性,并承诺将持续更新Flowable系列文章,帮助读者更好地理解和应用Flowable。 简要来说,本文通过实例讲解了如何利用Flowable的流程变量功能优化绩效评估流程,确保每个环节都能记录和更新分数,同时提供了全局和局部变量的对比和使用方法。
45 0
|
2月前
|
SQL 前端开发 关系型数据库
SpringBoot使用mysql查询昨天、今天、过去一周、过去半年、过去一年数据
SpringBoot使用mysql查询昨天、今天、过去一周、过去半年、过去一年数据
92 9
|
3月前
|
SQL JSON Java
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
这篇文章介绍了如何在Spring Boot项目中整合MyBatis和PageHelper进行分页操作,并且集成Swagger2来生成API文档,同时定义了统一的数据返回格式和请求模块。
122 1
mybatis使用三:springboot整合mybatis,使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
|
2月前
|
存储 easyexcel Java
SpringBoot+EasyExcel轻松实现300万数据快速导出!
本文介绍了在项目开发中使用Apache POI进行数据导入导出的常见问题及解决方案。首先比较了HSSFWorkbook、XSSFWorkbook和SXSSFWorkbook三种传统POI版本的优缺点,然后根据数据量大小推荐了合适的使用场景。接着重点介绍了如何使用EasyExcel处理超百万数据的导入导出,包括分批查询、分批写入Excel、分批插入数据库等技术细节。通过测试,300万数据的导出用时约2分15秒,导入用时约91秒,展示了高效的数据处理能力。最后总结了公司现有做法的不足,并提出了改进方向。
|
3月前
|
Java BI API
spring boot 整合 itextpdf 导出 PDF,写入大文本,写入HTML代码,分析当下导出PDF的几个工具
这篇文章介绍了如何在Spring Boot项目中整合iTextPDF库来导出PDF文件,包括写入大文本和HTML代码,并分析了几种常用的Java PDF导出工具。
836 0
spring boot 整合 itextpdf 导出 PDF,写入大文本,写入HTML代码,分析当下导出PDF的几个工具
|
3月前
|
Web App开发 JavaScript Java
elasticsearch学习五:springboot整合 rest 操作elasticsearch的 实际案例操作,编写搜索的前后端,爬取京东数据到elasticsearch中。
这篇文章是关于如何使用Spring Boot整合Elasticsearch,并通过REST客户端操作Elasticsearch,实现一个简单的搜索前后端,以及如何爬取京东数据到Elasticsearch的案例教程。
297 0
elasticsearch学习五:springboot整合 rest 操作elasticsearch的 实际案例操作,编写搜索的前后端,爬取京东数据到elasticsearch中。
|
3月前
|
前端开发 Java 数据库
springBoot:template engine&自定义一个mvc&后端给前端传数据&增删改查 (三)
本文介绍了如何自定义一个 MVC 框架,包括后端向前端传递数据、前后端代理配置、实现增删改查功能以及分页查询。详细展示了代码示例,从配置文件到控制器、服务层和数据访问层的实现,帮助开发者快速理解和应用。
|
7天前
|
JavaScript Java 测试技术
基于SpringBoot+Vue实现的留守儿童爱心网站设计与实现(计算机毕设项目实战+源码+文档)
博主是一位全网粉丝超过100万的CSDN特邀作者、博客专家,专注于Java、Python、PHP等技术领域。提供SpringBoot、Vue、HTML、Uniapp、PHP、Python、NodeJS、爬虫、数据可视化等技术服务,涵盖免费选题、功能设计、开题报告、论文辅导、答辩PPT等。系统采用SpringBoot后端框架和Vue前端框架,确保高效开发与良好用户体验。所有代码由博主亲自开发,并提供全程录音录屏讲解服务,保障学习效果。欢迎点赞、收藏、关注、评论,获取更多精品案例源码。
35 10