poi-tl是一款很是好用的word模板生成庫,更新響應快、文檔demo齊全。堪稱word模板界的小軍刀!html
若是你對word模板技術有了解、或者有興趣,更甚者工做中接觸過,那麼接下來的內容應該會讓你有所收穫。java
功能以下:git
更多文檔參考以下:poi-tlgithub
這裏再也不更多的贅述poi-tl的功能了,很是優秀的一個word模板庫。spring
若是你還沒使用過poi-tl,那麼接下來的內容,你應該不太會感同身受。express
poi-tl使用一段時間後會發現仍存在一些問題,好比行列表格須要本身寫代碼指定樣式、圖片須要寫代碼指定高度寬度、列表也寫代碼指定樣式。數組
爲最大化利用word的樣式,減小代碼量,這裏在v1.6.0之上進行源碼擴展。測試
加入模板語法:name|attr:var
。加密
fork地址:githubspa
語法:{{table|limit:var}}
模板:
其中:
{{table|5:[users]}}
,表明了這是一個表格模板(能夠出如今表格的任意位置,建議在表頭),users
則說明數據中存在一個 users 的 key 。測試代碼:
@Test public void run() { Path path = Paths.get("src/test/resources", "table_pattern.docx"); XWPFTemplate template = XWPFTemplate.compile(path.toFile()) // 數據 .render(new HashMap<String, Object>() {{ put("users", Arrays.asList(new User("張三", 1), new User("李四", 2))); }}); // 輸出 Path outPath = Paths.get("src/test/resources", "table_pattern_out.docx"); try (OutputStream os = new BufferedOutputStream(new FileOutputStream(outPath.toFile()))) { template.write(os); } catch (IOException e) { LOG.error("render tpl error", e); } finally { try { template.close(); } catch (IOException e) { LOG.error("close template error", e); } } }
能夠看到這裏的 map 中存在 users 這個 key,且存在 2 條數據。User 這個對象有兩個屬性 name、age ,模板在解析時,會自動取值。
輸出:
總結:表格正常渲染,並且樣式也正常保留,原來的數據也會保留下來,數據不足補空行。
語法:{{image|height*width:var}}
模板:
測試代碼:
@Test public void run() throws IOException { Path logoPath = Paths.get("src/test/resources", "logo.png"); byte[] bytes = Files.readAllBytes(logoPath); byte[] encode = Base64.getEncoder().encode(bytes); Path path = Paths.get("src/test/resources", "image_pattern.docx"); XWPFTemplate template = XWPFTemplate.compile(path.toFile()) // 數據 .render(new HashMap<String, Object>() {{ put("logo", new String(encode)); }}); // 輸出 Path outPath = Paths.get("src/test/resources", "image_pattern_out.docx"); try (OutputStream os = new BufferedOutputStream(new FileOutputStream(outPath.toFile()))) { template.write(os); } catch (IOException e) { LOG.error("render tpl error", e); } finally { try { template.close(); } catch (IOException e) { LOG.error("close template error", e); } } }
輸出:
總結:圖片能正常根據高度寬度渲染出來
語法:list|limit:var
模板:
測試代碼:
@Test public void run() { Path inPath = Paths.get("src/test/resources", "list_pattern.docx"); Path outPath = Paths.get("src/test/resources", "list_pattern_out.docx"); Map<String, Object> model = new HashMap<String, Object>() {{ put("items", Arrays.asList("張三", "李四", "王五")); }}; try (InputStream is = Files.newInputStream(inPath); OutputStream os = Files.newOutputStream(outPath)) { Tpl.render(is, model).out(os); } catch (IOException e) { LOG.info("render tpl failed", e); } }
輸出:
總結:列表也能正常渲染,保證原有的格式。
看示例,你也許會以爲很奇怪,爲何語法明明寫的var
,可是截圖中有的寫的是[var]
、有的卻寫的var
。
這是由於變量取值採用的 spring expression 語法:若是代碼中是一個對象,就能夠直接寫var
,是一個map,就寫[var]
,數組則是var[下標]
。
若是以爲有用,快快使用起來吧!
原文出處:https://www.cnblogs.com/bener/p/12028952.html