Freemarket模板處理

raorq發表於2020-04-06
       今天設計了一個功能,發郵件,而且郵件的內容是html。html內容裡面帶有動態內容,因此覺得freemarket是個不錯的選擇。
結合同事以前對Freemarket的處理,自己在同事的程式碼的基礎上稍微修改了下,不過估計網路上相同功能的東西太多了。
java 程式碼
 
  1. class HtmlTemplateGenerator {  
  2.   
  3.     Configuration cfg = null;  
  4.       
  5.     public HtmlTemplateGenerator(String templatePath) throws IOException {  
  6.         cfg = new Configuration();  
  7.         cfg.setDefaultEncoding("UTF-8");  
  8.         cfg.setDirectoryForTemplateLoading(new File(templatePath));  
  9.         cfg.setObjectWrapper(new DefaultObjectWrapper());  
  10.     }  
  11.       
  12.     /** 
  13.      * 生成靜態檔案 
  14.      * @param ftlTemplate ftl模版檔案 
  15.      * @param contents    ftl要用到的動態內容 
  16.      * @param savePath    檔案儲存路徑 
  17.      * @param saveFilename 儲存檔名 
  18.      * @throws IOException 
  19.      * @throws TemplateException 
  20.      */  
  21.     public void create(String ftlTemplate, Map contents, String savePath, String saveFilename) throws IOException, TemplateException {  
  22.         Template temp = cfg.getTemplate(ftlTemplate);  
  23.         /* Merge data model with template */  
  24.           
  25.         String realPath = ServletActionContext.getServletContext().getRealPath(savePath);  
  26.         System.out.println( saveFilename + ":" + realPath);  
  27.         File file = new File(realPath);  
  28.         if(!file.exists())  
  29.             file.mkdirs();  
  30.           
  31.         Writer out = new OutputStreamWriter(new FileOutputStream(realPath + "/" + saveFilename),"UTF-8");  
  32.         temp.process(contents, out);  
  33.         out.flush();  
  34.     }  
  35.       
  36.     public String getContentFromTemplate(String ftlTemplate, Map contents) throws IOException, TemplateException {  
  37.         Template temp = cfg.getTemplate(ftlTemplate);  
  38.         /* Merge data model with template */  
  39.         StringWriter sw = new StringWriter();  
  40.         temp.process(contents, sw);  
  41.         return sw.toString();  
  42.     }  
  43.       

這樣我們就可以通過getContentFromTemplate()獲取html內容,然後再傳送這個內容到對方的郵件中,
至於模板碼,可以像寫普通的freemarket檔案那麼簡單。

相關文章