poi-tl icon indicating copy to clipboard operation
poi-tl copied to clipboard

Generate awesome word(docx) with template

Results 117 poi-tl issues
Sort by recently updated
recently updated
newest added

为所有的NumberingFormat添加了重载方法 完善 #605

### Issue description 表格行循环,5 列 100000 行 导出过慢,请问有什么优化手段吗? ### poi-tl version 1.12.0 ### Minimal test code to reproduce the issue ```java public class Test { public static void main(String[] args)...

![image](https://user-images.githubusercontent.com/27796603/177673400-1e0239a5-9dbe-4a2c-8388-55a0f818c278.png)

Bumps [spring-expression](https://github.com/spring-projects/spring-framework) from 4.3.6.RELEASE to 5.2.21.RELEASE. Release notes Sourced from spring-expression's releases. v5.2.21.RELEASE :star: New Features Remove DNS lookups during websocket connection initiation #28281 :lady_beetle: Bug Fixes Improve documentation and...

dependencies

尝试修复 #809 本地测试通过

### Issue description 当模板中的渲染内容{{=xxx}}使用单个分隔时,渲染结果在word和wps中出现2个tab,但是xml还是1个 ### poi-tl version 1.12.0 ### Minimal test code to reproduce the issue ```xml ``` ### Minimal Docx template file ![image](https://user-images.githubusercontent.com/1490719/176362215-ac32e22c-296f-46b8-8b42-02b54b8b6fed.png) ```xml {{?wordUsers}} {{=#this. zw }} {{=#this.username}}...

区块对内标签只能当前区块对引用的变量的值吗?如果要引用外部变量该怎么办? 需求场景是要在区块内引用外部的一个序号遍历器给文档中的所有图表编号 ``` List charts = ... Indexer chartIndexer = xxx XWPFTemplate template = XWPFTemplate.compile("template.docx").render( new HashMap(){{ put("indexer", chartIndexer ); put("charts", charts); }}); ``` word模板 ``` {{?chart}} 序号:{{indexer.nextVal()}} {{=#this}} {/chart}...

### Issue description 模板如下 ![图片](https://user-images.githubusercontent.com/18606985/174056776-dd71009b-c314-427b-bc03-94bf96cc7a25.png) 结果如下 ![图片](https://user-images.githubusercontent.com/18606985/174056900-773475ba-5b22-470f-b884-249eb0807f81.png) ### poi-tl version all ### Minimal test code to reproduce the issue ```java public static void main(String[] args) throws Exception { TestData testData...

当在区块对里渲染表格时会出现这种情况 ![image](https://user-images.githubusercontent.com/86226719/170912765-c9b0e6ee-9cc7-46d3-b735-555dbf3fc849.png) 这是我的模板 ![image](https://user-images.githubusercontent.com/86226719/170912903-5d076db9-4686-4bb8-90af-ce215e5f07ee.png)