如何将freemarker文件转化为html文件
生活随笔
收集整理的這篇文章主要介紹了
如何将freemarker文件转化为html文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
最近在做靜態的頁面報表服務,將前端生成的ftl文件轉化為html格式的文件,供后面合成pdf使用。
freemarker基礎可以參見: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;this.tele = tele;this.email = email;}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getTele() {return tele;}public void setTele(String tele) {this.tele = tele;}public String getEmail() {return email;}public void setEmail(String email) {this.email = 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", "13767682365", "qust@163.com");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 = freemarkerCfg.getTemplate(templateName, "utf-8");// 設置html靜態頁面輸出路徑File f = new File(targetHtmlPath);if (!f.exists()) {f.createNewFile();}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項目中可能會有亂碼的情況。注意設置好響應的編碼格式。
?
轉載于:https://www.cnblogs.com/xiaxj/p/9012619.html
總結
以上是生活随笔為你收集整理的如何将freemarker文件转化为html文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: AttributeError: ‘Req
- 下一篇: linux常用命令:sudo 命令