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

Java-使用poi-tl根据word模板动态生成word

作者wangsz,想写一些关于word的工具,所以就写了这篇文章

1.首先,先导入所需要的依赖(poi相关依赖即可)


        <!-- POI -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>4.1.2</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>

        <!-- poi-tl -->
        <dependency>
            <groupId>com.deepoove</groupId>
            <artifactId>poi-tl</artifactId>
            <version>1.9.1</version>
        </dependency>




        <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox -->
        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>pdfbox</artifactId>
            <version>2.0.24</version>
        </dependency>

        <dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>itextpdf</artifactId>
            <version>5.5.13</version>
        </dependency>
        <dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>itext-asian</artifactId>
            <version>5.2.0</version>
        </dependency>



        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

2.依赖导入完成后,先了解一些poi基础知识,制作word模板

{{template}}
普通文本,渲染数据为:String或者TextRenderData

{{@template}}
图片,渲染数据为:PictureRenderData

{{#template}}
表格,渲染数据为:TableRenderData
{{*template}}
列表,渲染数据为:NumbericRenderData

3.编写生成word文档代码

 //将图片转换成字节数组
    public static byte[] getUrlByteArray(String imageUrl) throws IOException {
        URL url = new URL(imageUrl);
        try (InputStream inputStream = url.openStream();
             ByteArrayOutputStream outputStream = new ByteArrayOutputStream()) {
            byte[] buffer = new byte[4096];
            int bytesRead;
            while ((bytesRead = inputStream.read(buffer)) != -1) {
                outputStream.write(buffer, 0, bytesRead);
            }
            return outputStream.toByteArray();
        }
    }
// 主要工具
public void testPicture(){

      
        Map<String, Object> datas = new HashMap() {
            {
                //本地图片
         //     put("photo", new PictureRenderData(100, 116, "C:\\Users\\53129\\Pictures\\Saved Pictures\\111.png") );
                put("name","王首zhen");
              //  put("oname","");
                put("sex","男");
                put("nation","汉族");
                put("address","天津市");
//				//本地图片byte数据
//				put("localBytePicture", new PictureRenderData(100, 120, ".png", BytePictureUtils.getLocalByteArray(new File("src/test/resources/logo.png"))));
//				//网路图片
                try {
                    put("photo", new PictureRenderData(100, 100, ".png", testPotPi.getUrlByteArray("https://avatars3.githubusercontent.com/u/1394854?v=3&s=40")));
                } catch (IOException e) {
                    e.printStackTrace();
                }
//				// java 图片
//				put("bufferImagePicture", new PictureRenderData(100, 120, ".png", BytePictureUtils.getBufferByteArray(bufferImage)));
            }
        };

        XWPFTemplate template = XWPFTemplate.compile("C:\\Users\\53129\\Desktop\\模板文件.docx")
                .render(datas);
        FileOutputStream out;
        try {
            out = new FileOutputStream("C:\\Users\\53129\\Desktop\\生成文件.docx");
            template.write(out);
            out.flush();
            out.close();
            template.close();
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

4.测试代码

  public static void main(String[] args) {
        long l = System.currentTimeMillis();
        new testPotPi().testPicture();
        long l1 = System.currentTimeMillis();
        System.err.println("运行时长"+(l1-l));
    }

5.封装工具类

   /*
   tempath :模板文件地址
   decPath : 生成文件地址
    */
    public static void testPicture(Map<String, Object> datas , String temPath , String decPath){
        
        XWPFTemplate template = XWPFTemplate.compile(temPath)
                .render(datas);
        FileOutputStream out;
        try {
            out = new FileOutputStream(decPath);
            template.write(out);
            out.flush();
            out.close();
            template.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

    }


 


http://www.kler.cn/a/145920.html

相关文章:

  • VS Code AI开发之Copilot配置和使用详解
  • Python基础学习(六)unittest 框架
  • ChatGPT被曝存在爬虫漏洞,OpenAI未公开承认
  • 如何用3个月零基础入门网络安全?_网络安全零基础怎么学习
  • Ubuntu 24.04 LTS 服务器折腾集
  • mongodb详解二:基础操作
  • js逆向-某敏感网站登录参数分析
  • QT已有项目导入工程时注意事项
  • STL pair源码分析
  • Windows开启SQL Server服及1433端口
  • [蓝桥杯训练]———高精度乘法、除法
  • 『heqingchun-Ubuntu系统+x86架构+编译安装ffmpeg+带有nvidia硬件加速』
  • Linux7安装mysql数据库以及navicat远程连接mysql
  • Java8实战-总结49
  • jupyter notebook 不知道密码,怎么登录解决办法
  • Spring Boot Actuator 2.2.5 基本使用
  • 代码随想录算法训练营 ---第四十五天
  • 什么是工业物联网(IOT)?这样的IOT平台你需要吗?——青创智通
  • MySQL(免密登录)
  • 【STM32单片机】贪吃蛇游戏设计
  • 【算法】装备合成(二分)
  • 【UCAS自然语言处理作业二】训练FFN, RNN, Attention机制的语言模型,并计算测试集上的PPL
  • 电子学会C/C++编程等级考试2021年09月(三级)真题解析
  • redisserver一闪而过 redis闪退解决版本
  • 深信服超融合一体机提示:内存ECC
  • Echarts title标题配置项的使用 更改颜色 副标题