前言:
在我们日常开发中。可能有第三方提供固定的word表格文档。让我们动态渲染内容到表格中去。可以使用freemarker模板框架
<dependency>
<groupId>org.freemarker</groupId>
<artifactId>freemarker</artifactId>
<version>2.3.22</version>
</dependency>
使用方式:
1、首先将我们的word文档另保存为xml格式。
2、保存好的xml文件使用文本工具打开。不用直接打开。然后将里面的xml格式化。使用在线工具
https://tool.oschina.net/codeformat/xml
3、将xml文件格式化之后,将后缀名改为.ftl文件方式,放到我们的项目中。就可以使用我们的freemarker语句了
3、渲染完之后。我们可以将模板生产word保存到指定的路径。也可以上传至oss等。
主要代码:
private static Configurationconfiguration =null;
/**
* 初始化配置并设置默认编码UTF-8
*/
static {
configuration =new Configuration();
configuration.setDefaultEncoding("UTF-8");
}
String property = System.getProperty("user.dir");
String templatePath = property +"\\src\\main\\resources\\templates\\";
String sourceFile = templatePath +"order.doc";//生成的word文档路径和名称
String templateName ="test.ftl";//模板名称
Map dataMap =new HashMap<>();
dataMap.put("patientName", "测试");
dataMap.put("inNumber", "测试");
String url = createWord(null, templateName, sourceFile, dataMap);
/**
*
* @param tpmplateFilePath 模板文件路径(完整路径,不包含文件如:D:/templates)
* @param tpmplateFileName 模板文件名称
* @param outFilePath 输出文件路径(完整路径,包含文件名称 如:D:/templates/order.doc)
* @param dataMap 需要动态添加的数据
*/
public String createWord(String tpmplateFilePath, String tpmplateFileName, String outFilePath, Map dataMap) {
try {
//如果不传模板文件路径就默认取resources下的templates文件夹中的模板文件
if (StringUtils.isEmpty(tpmplateFilePath)) {
configuration.setClassForTemplateLoading(TemplateUtil.class,"/templates");
}else {
configuration.setDirectoryForTemplateLoading(new File(tpmplateFilePath));// XML文件所存在的位置
}
//获取文档XML模板
Template template =configuration.getTemplate(tpmplateFileName);
//设置输出文件位置和文件名
File outFile =new File(outFilePath);
Writer out =new BufferedWriter(new OutputStreamWriter(new FileOutputStream(outFile),"UTF-8"));
template.process(dataMap, out);
out.close();
return resultMessage;
}catch (Exception e) {
e.printStackTrace();
return null;
}
}