java使用poi-tl自定义word模板导出

文章目录

概要

在软件开发领域,自定义Word模板的使用是导出格式化数据的一种常见做法。poi-tl(Apache POI Template Language)作为一款基于广受认可的Apache POI库的Word模板引擎,它以纯Java组件的形式提供服务,确保了跨平台的兼容性。poi-tl以其简洁高效的代码著称,不仅易于集成,还通过其插件机制实现了功能的高度可扩展性,允许开发者根据项目需求灵活定制。这一特性使得poi-tl成为处理Word文档生成任务时的一个强有力工具。

整体架构流程

官网:poi-tl

java 复制代码
 <!--    POI 依赖 使用xlsx xml的格式(即XSSFWorkbook)   -->
  <dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi</artifactId>
    <version>5.2.2</version>
  </dependency>
  <dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>5.2.2</version>
  </dependency>
  <dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-scratchpad</artifactId>
    <version>3.17</version>
  </dependency>
        <!--     poi模板导入,主力包      -->
  <dependency>
    <groupId>com.deepoove</groupId>
    <artifactId>poi-tl</artifactId>
    <version>1.12.1</version>
  </dependency>

创建word模板

核心代码

java 复制代码
       try {
            String pictureUrl = "D:\\file\\test\\image\\bigPicture10.jpeg";
            if (pictureUrl != null && !pictureUrl.isEmpty()) {
                PictureRenderData picture = Pictures.ofLocal(pictureUrl).size(40, 30).create();
                finalMap.put("signPicture", picture);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

        // 从classpath加载Word模板文件到临时文件
        try (InputStream inputStream = TestWord.class.getClassLoader().getResourceAsStream("template.docx")) {
            if (inputStream == null) {
                throw new RuntimeException("无法找到模板文件:template.docx");
            }

            // 创建一个临时文件用于XWPFTemplate处理
            Path tempFilePath = Files.createTempFile("word-template-", ".docx");
            Files.copy(inputStream, tempFilePath, StandardCopyOption.REPLACE_EXISTING);

            // 使用临时文件作为模板
            File wordTemplate = tempFilePath.toFile();
            LoopRowTableRenderPolicy policy = new LoopRowTableRenderPolicy();
            Configure build = Configure.builder().bind(policy, "workList").build();

            XWPFTemplate render = XWPFTemplate.compile(wordTemplate, build).render(finalMap);

            // 定义输出路径
            String outputPath = "D:\\file\\htht\\project\\260\\开发\\output.docx"; // 修改为期望的输出文件路径
            File outputFile = new File(outputPath);
            try {
                if (!outputFile.getParentFile().exists()) {
                    outputFile.getParentFile().mkdirs(); // 确保父目录存在
                }
                render.writeToFile(outputFile.getAbsolutePath());
                System.out.println("Word文档成功导出到: " + outputPath);
            } catch (IOException e) {
                throw new RuntimeException("无法写入文件: " + e.getMessage(), e);
            }

            // 删除临时文件(可选)
            Files.deleteIfExists(tempFilePath);

        } catch (IOException e) {
            throw new RuntimeException("读取模板文件失败: " + e.getMessage(), e);
        }

导出结果

资源提取:https://download.csdn.net/download/yy12345_6_/90275767

相关推荐
鱼跃鹰飞7 小时前
设计模式系列:工厂模式
java·设计模式·系统架构
时见先生7 小时前
Python库和conda搭建虚拟环境
开发语言·人工智能·python·自然语言处理·conda
a努力。7 小时前
国家电网Java面试被问:混沌工程在分布式系统中的应用
java·开发语言·数据库·git·mysql·面试·职场和发展
Yvonne爱编码7 小时前
Java 四大内部类全解析:从设计本质到实战应用
java·开发语言·python
wqwqweee7 小时前
Flutter for OpenHarmony 看书管理记录App实战:搜索功能实现
开发语言·javascript·python·flutter·harmonyos
J2虾虾7 小时前
SpringBoot和mybatis Plus不兼容报错的问题
java·spring boot·mybatis
yongui478348 小时前
基于MATLAB的NALM锁模光纤激光器仿真实现
开发语言·matlab
毕设源码-郭学长8 小时前
【开题答辩全过程】以 基于springboot 的豪华婚车租赁系统的设计与实现为例,包含答辩的问题和答案
java·spring boot·后端
-To be number.wan9 小时前
Python数据分析:numpy数值计算基础
开发语言·python·数据分析
Cx330❀9 小时前
【优选算法必刷100题】第038题(位运算):消失的两个数字
开发语言·c++·算法·leetcode·面试