POI-tl 知识整理:整理3 -> 动态生成表格

1 表格行循环

(1)需要渲染的表格的模板


说明{``{goods}} 是个标准的标签,将 {``{goods}} 置于循环行的上一行,循环行设置要循环的标签和内容,注意此时的标签应该使用 [] ,以此来区别poi-tl的默认标签语法。同理,{``{labors}} 也置于循环行的上一行。

(2)定义两个实体类

java 复制代码
@Data
public class Goods {
    private int count;
    private String name;
    private String desc;
    private int discount;
    private int tax;
}



@Data
public class Labors {
    private String category;
    private int people;
    private int price;
}

(3)测试代码

java 复制代码
    @Test
    public void autoGenerateTable1() throws Exception {
        // 数据
        Goods goods1 = new Goods();
        Goods goods2 = new Goods();
        Labors labors1 = new Labors();
        Labors labors2 = new Labors();

        goods1.setCount(2);
        goods1.setName("商品1");
        goods1.setDiscount(10);
        goods1.setDesc("商品1描述");
        goods1.setTax(5);

        goods2.setCount(4);
        goods2.setName("商品2");
        goods2.setDiscount(20);
        goods2.setDesc("商品2描述");
        goods2.setTax(10);
        List<Goods> goodsList = Arrays.asList(goods1, goods2);

        labors1.setPeople(3);
        labors1.setCategory("类别1");
        labors1.setPrice(100);

        labors2.setPeople(1);
        labors2.setCategory("类别2");
        labors2.setPrice(200);
        List<Labors> laborList = Arrays.asList(labors1, labors2);

        // 用行循环插件
        LoopRowTableRenderPolicy renderPolicy = new LoopRowTableRenderPolicy();
        ConfigureBuilder builder = Configure.builder();
        Configure configure = builder.bind("goods", renderPolicy).bind("labors", renderPolicy).build();

        XWPFTemplate template = XWPFTemplate.compile("D:\\Idea-projects\\POI_word\\templates_autoGenerateTable.docx",configure);

        Map<String, Object> map = new HashMap<>();
        map.put("goods", goodsList);
        map.put("labors", laborList);

        template.render(map);

        FileOutputStream fileOutputStream = new FileOutputStream("D:\\Idea-projects\\POI_word\\output_autoGenerateTable.docx");
        template.writeAndClose(fileOutputStream);

        template.close();
    }

(4)渲染结果

(5)测试代码详细解释


2 表格列循环

列循环跟行循环没有什么区别,就是将行循环插件换成了列循环插件
(1) 模板


(2)测试代码

java 复制代码
    @Test
    public void autoGenerateTable2() throws Exception {
        // 数据
        Labors labors1 = new Labors();
        Labors labors2 = new Labors();

        labors1.setPeople(3);
        labors1.setCategory("类别1");
        labors1.setPrice(100);

        labors2.setPeople(1);
        labors2.setCategory("类别2");
        labors2.setPrice(200);
        List<Labors> laborList = Arrays.asList(labors1, labors2);

        // 用列循环插件
        LoopColumnTableRenderPolicy renderPolicy = new LoopColumnTableRenderPolicy();
        ConfigureBuilder builder = Configure.builder();
        Configure configure = builder.bind("labors", renderPolicy).build();

        XWPFTemplate template = XWPFTemplate.compile("D:\\Idea-projects\\POI_word\\templates_autoGenerateTableCol.docx",configure);

        Map<String, Object> map = new HashMap<>();
        map.put("labors", laborList);

        template.render(map);

        FileOutputStream fileOutputStream = new FileOutputStream("D:\\Idea-projects\\POI_word\\output_autoGenerateTableCol.docx");
        template.writeAndClose(fileOutputStream);

        template.close();
    }


(3)渲染结果

相关推荐
喵叔哟11 分钟前
重构代码中引入外部方法和引入本地扩展的区别
java·开发语言·重构
尘浮生17 分钟前
Java项目实战II基于微信小程序的电影院买票选座系统(开发文档+数据库+源码)
java·开发语言·数据库·微信小程序·小程序·maven·intellij-idea
不是二师兄的八戒40 分钟前
本地 PHP 和 Java 开发环境 Docker 化与配置开机自启
java·docker·php
爱编程的小生1 小时前
Easyexcel(2-文件读取)
java·excel
带多刺的玫瑰1 小时前
Leecode刷题C语言之统计不是特殊数字的数字数量
java·c语言·算法
计算机毕设指导62 小时前
基于 SpringBoot 的作业管理系统【附源码】
java·vue.js·spring boot·后端·mysql·spring·intellij-idea
Gu Gu Study2 小时前
枚举与lambda表达式,枚举实现单例模式为什么是安全的,lambda表达式与函数式接口的小九九~
java·开发语言
Chris _data2 小时前
二叉树oj题解析
java·数据结构
牙牙7052 小时前
Centos7安装Jenkins脚本一键部署
java·servlet·jenkins
paopaokaka_luck2 小时前
[371]基于springboot的高校实习管理系统
java·spring boot·后端