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

POI-TL制作word

本文相当于笔记,主要根据官方文档Poi-tl Documentation和poi-tl的使用(最全详解)_JavaSupeMan的博客-CSDN博客文章进行学习(上班够用)

@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
@EqualsAndHashCode
public class Author {private String name;private String sex;
}
@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
@EqualsAndHashCode
public class Student implements Serializable {private String name;private String startTime;private Author author;private String img;
}

两个实体类

下边测试类

@SpringBootTest
@RunWith(SpringRunner.class)
@Slf4j
public class Demo {@Testpublic void Tx01() throws IOException {Map<String, Object> datas = new HashMap<String, Object>();//        对象形式 存储对象Student student = new Student("华", "2023-09-02 20:41:10",new Author("张三", "男"),null);datas.put("student",student);//        处理文字样式(下划线等)
//        Style underlineStyle = Style.builder().underline().build();datas.put("var",Texts.of("hello").bold().italic().create());//        图片  http://deepoove.com/images/icecream.png
//        datas.put("image","http://deepoove.com/images/icecream.png");
//        datas.put("svg","http://deepoove.com/images/icecream.png");
//        datas.put("svg",Pictures.ofUrl("http://deepoove.com/images/icecream.png")
//                .size(100,100).create());datas.put("image", Pictures.ofUrl("https://ee19hua.oss-cn-beijing.aliyuncs.com/images/2022/09/24/1664008700443.jpg").size(400, 300).create());//        表格 基本操作//RowRenderData就是指定每一行数据的,可以去官网查阅,这里相当于设置了三行,row0就是表头,row1,row2是表内容RowRenderData row0 = Rows.of("姓名", "学历").textColor("FFFFFF").bgColor("4472C4").center().create();RowRenderData row1 = Rows.create("李四", "博士");RowRenderData row2 = Rows.create("李四", "博士");MergeCellRule rule1 = MergeCellRule.builder().map(MergeCellRule.Grid.of(0,0),MergeCellRule.Grid.of(0,1)).build();//合并单元格(第几行第几列)datas.put("var1", Tables.of(row0, row1,row2).mergeRule(rule1).create());//合并单元格RowRenderData roW0 = Rows.of("列0", "列1", "列2", "列3").bgColor("4472C4").textColor("7F7f7F").textFontFamily("Hei").textFontSize(15).center().create();RowRenderData roW1 = Rows.create("没有数据", null, null, null);//第一行//合并第几行第几列 到 第几行第几列MergeCellRule rule = MergeCellRule.builder().map(MergeCellRule.Grid.of(1, 0), MergeCellRule.Grid.of(1, 2)).build();datas.put("var2", Tables.of(roW0, roW1).mergeRule(rule).create());//       动态生成表格   列表循环  Configure.builder()Student s1 = new Student("张三", "2023-09-02 20:41:10",new Author("赵", "男"),"https://ee19hua.oss-cn-beijing.aliyuncs.com/images/2022/09/24/1664008700443.jpg");Student s2 = new Student("李四", "2023-09-02 20:41:10",new Author("钱", "男"),"https://ee19hua.oss-cn-beijing.aliyuncs.com/images/2022/09/24/1664008700443.jpg");Student s3 = new Student("王五", "2023-09-02 20:41:10",new Author("孙", "女"),"https://ee19hua.oss-cn-beijing.aliyuncs.com/images/2022/09/24/1664016579528.png");Student s4 = new Student("赵六", "2023-09-02 20:41:10",new Author("李", "女"),"https://ee19hua.oss-cn-beijing.aliyuncs.com/images/2022/09/24/1664008700443.jpg");List<Student> studentList = new ArrayList<>();studentList.add(s1);studentList.add(s2);studentList.add(s3);studentList.add(s4);datas.put("lists",studentList);// 插件列表,可以去官网查看,有列循环,还有行循环,这里是行循环实例LoopRowTableRenderPolicy policy = new LoopRowTableRenderPolicy();//这里可以指定一个 config 类,用来指定一些规则,也可以改变模板中{{}}的这种格式Configure config = Configure.builder().bind("lists", policy).build();//        列表datas.put("listString",studentList);//模板地址String templateFilePath = "d:/data/template/";//生成文件的保存地址String destFilePath = "d:/data/template/word";
//        生成wordXWPFTemplate compile = XWPFTemplate.compile(templateFilePath + "test1.docx",config);
//        XWPFTemplate compile = XWPFTemplate.compile(templateFilePath + "test3.docx",config);compile.render(datas);//输出为文件,指定输出文件名compile.writeToFile(destFilePath+"out_test01.docx");System.out.println("运行完成-------------------------------------");}}

word模板

 生成结果:

 

如果想生成柱状图等,按照官网进行学习即可,以上两篇(官网,和博客学习够用)

http://www.lryc.cn/news/151520.html

相关文章:

  • 大数据Flink(七十一):SQL的时间属性
  • 51单片机项目(7)——基于51单片机的温湿度测量仿真
  • 按钮控件之1---QPushButton 标准按钮/普通按钮控件
  • Ae 效果:CC Light Rays
  • MPI之通信模式(标准,缓存,同步,就绪)
  • 面试官:说一下 MyBatis 的一级缓存和二级缓存 ?
  • Ajax与jQuery
  • 色温曲线坐标轴的选取:G/R、G/B还是R/G、B/G ?
  • maven部署
  • docker进阶作业
  • HTML+JavaScript+CSS DIY 分隔条splitter
  • Oracle-day5:新增、复制建表、表结构、表数据、删除
  • Scratch 画画的技巧
  • 国际版阿里云/腾讯云:阿里弹性云手机正式公测
  • 服务器数据恢复- RAID5出现故障后恢复数据和操作系统的案例
  • Vue3实现可视化拖拽标签小程序
  • SSM 前端使用AJAX方式,fromdata文件格式上传二进制流文件
  • LeetCode-455-分发饼干-贪心算法
  • 新版 Next.js 从入门到入土
  • OpenCV(十):图像缩放、翻转、拼接的介绍与使用
  • C++ 学习之 构造函数 和 析构函数
  • 加快 MySQL 数据迁移
  • CANalyzer panel
  • 延迟队列的理解与使用
  • jQuery成功之路——jQuery的DOM操作简单易懂
  • C++ 学习系列 -- 智能指针 make_shared 与 make_unique
  • 贝叶斯神经网络 - 捕捉现实世界的不确定性
  • games101作业1
  • LeetCode 面试题 02.08. 环路检测
  • 【Linux】线程安全-生产者消费者模型