1.建立word文档模板
2.word模板建立好之后放到指定路径下,这里放到D盘根目录测试
3.{ {}}这两个中括号里面的标签就是java中需要注入的变量
4.java代码
public static void main(String[] args) throws FileNotFoundException, IOException {
XWPFTemplate template = XWPFTemplate.compile("D:/test.docx").render(
new HashMap<String, Object>(){
{
put("title", new TextRenderData("\uF0FE",new Style("Wingdings",14)));
}});
template.writeAndClose(new FileOutputStre