java Freemarker 模版引擎工具類

FH-Admin發表於2022-01-07
package org.fh.util;

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.io.Writer;
import java.util.Locale;
import java.util.Map;

import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;

/**
 * 說明:Freemarker 模版引擎類
 * 作者:FH Admin
 * from:fhadmin.cn
 */
public class Freemarker {

    /**
     * 列印到控制檯(測試用)
     *  @param ftlName
     */
    public static void print(String ftlName, Map<String,Object> root, String ftlPath) throws Exception{
        try {
            Template temp = getTemplate(ftlName, ftlPath);        //通過Template可以將模板檔案輸出到相應的流
            temp.process(root, new PrintWriter(System.out));
        } catch (TemplateException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * 輸出到輸出到檔案
     * @param ftlName   ftl檔名
     * @param root        傳入的map
     * @param outFile    輸出後的檔案全部路徑
     * @param filePath    輸出前的檔案上部路徑
     */
    public static void printFile(String ftlName, Map<String,Object> root, String outFile, String filePath, String ftlPath) throws Exception{
        try {
            File file = new File(PathUtil.getProjectpath() + filePath + outFile);
            if(!file.getParentFile().exists()){                //判斷有沒有父路徑,就是判斷檔案整個路徑是否存在
                file.getParentFile().mkdirs();                //不存在就全部建立
            }
            Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file), "utf-8"));
            Template template = getTemplate(ftlName, ftlPath);
            template.process(root, out);                    //模版輸出
            out.flush();
            out.close();
        } catch (TemplateException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * 通過檔名載入模版
     * @param ftlName
     */
    public static Template getTemplate(String ftlName, String ftlPath) throws Exception{
        try {
            Configuration cfg = new Configuration(Configuration.VERSION_2_3_23);                                  //通過Freemaker的Configuration讀取相應的ftl
            cfg.setEncoding(Locale.CHINA, "utf-8");
            cfg.setDirectoryForTemplateLoading(new File(PathUtil.getProjectpath()+"/admin/template/ftl/"+ftlPath));        //設定去哪裡讀取相應的ftl模板檔案
            Template temp = cfg.getTemplate(ftlName);                                                            //在模板檔案目錄中找到名稱為name的檔案
            return temp;
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }
}
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章