如何将freemarker⽂件转化为html⽂件最近在做静态的页⾯报表服务,将前端⽣成的ftl⽂件转化为html格式的⽂件,供后⾯合成pdf使⽤。freemarker基础可以参见:
前期准备:需要⼀个基础的ftl格式的⽂件。
⼀个freemarker中注⼊的对象
这⾥⾯单独命名了⼀个类:
/**
* 实体类
* @author Xia
*/
public class Person {
private String name;
private String tele;
private String email;
public Person(String name, String tele, String email) {
this.name = name;
pdf转html
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getTele() {
return tele;
}
public void setTele(String tele) {
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
}
}
具体的实现代码
static String templatePath = "/pdf0020ftlToHtml";
static String templateName = "part2.ftl";
static String targetHtmlPath = "src/main/resources/pdf0020ftlToHtml/part2.html";
public static void crateHTML(String templatePath, String templateName, String targetHtmlPath) {
FileWriter out = null;
Person p = new Person("zhangsan", "137********", "qust@163");
try {
/
/ 通过Configuration读取模版的配置⽂件
Configuration freemarkerCfg = new Configuration(Configuration.VERSION_2_3_23);
// 加载模版
// 设置要解析的模板所在的⽬录这⾥⾯有三种设置的⽅式
// freemarkerCfg.setDirectoryForTemplateLoading(new File(templatePath));
// freemarkerCfg.setServletContextForTemplateLoading(servletContext, path);
freemarkerCfg.setClassForTemplateLoading(Pdf0020ftlToHtml.class, templatePath);
// 设置默认的编码格式
freemarkerCfg.setDefaultEncoding("utf-8");
// 指定模版路径,并且获取模版
Template template = Template(templateName, "utf-8");
/
/ 设置html静态页⾯输出路径
File f = new File(targetHtmlPath);
if (!f.exists()) {
}
out = new FileWriter(f);
template.process(p, out);
System.out.println("success");
} catch (Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
crateHTML(templatePath, templateName, targetHtmlPath);
}
注意,在web项⽬中可能会有乱码的情况。注意设置好响应的编码格式。