Word 模板引擎 poi-tl V1.9.0 发布,更易用的数据模型-作者很强大,强势推荐
每个程序员或早或晚会遇到基于Microsoft Word模板和数据生成新的Word文档的时候,而poi-tl可能是Java中最好的Word模板引擎
代码示例
word表格
Tables.of(new String[][] {
new String[] { "00", "01" },
new String[] { "10", "11" }
}).border(BorderStyle.DEFAULT).create()
word图表
Charts.ofSingleSeries("ChartTitle", new String[] { "美国", "中国" })
.series("countries", new Integer[] { 9826675, 9596961 })
.create();
最新中文文档地址:http://deepoove.com/poi-tl
好好学习-天天撸码