Java freemarker生成html页面

public class FreemarkerTest { 
private final Log logger=LogFactory.getLog(getClass()); 

private Configuration freemarke_cfg=null; 

protected Configuration getFreeMarkerCFG(String sTemplateFilePath){ 

    if(null==freemarke_cfg){ 
          freemarke_cfg=new Configuration(); 
          freemarke_cfg.setEncoding(Locale.CHINA, "UTF-8"); 
         //基于类路径的模版加载器 
      freemarke_cfg.setClassForTemplateLoading(this.getClass    (), "/websiteroot/freemarker"); 
      try{ 
            freemarke_cfg.setDirectoryForTemplateLoading(new File (sTemplateFilePath)); 
     }catch (Exception e) { 
           e.printStackTrace(); 
     } 
  } 
    return freemarke_cfg; 
} 

/** 
*生成静态文件 
*@param templatePath:模板路径 
*@param templateFileName:模板名称 
*@param propMap:存放数据模型的Map 
*@param htmlFilePath:生成HTML页面的存放路径 
*@param htmlFileName:生成html页面的名称 
* */ 
    public boolean geneHtmlFile(String templatePath,String templateFileName,Map propMap,String htmlFilePath,String htmlFileName){ 
    try{ 
    Template t=getFreeMarkerCFG(templatePath).getTemplate(templateFileName); 
    t.setEncoding("UTF-8"); 
    creatDirs(htmlFilePath); 
        File afile = new File(htmlFilePath+"/"+htmlFileName);
 
        //设置生成的文件编码为UTF-8 
        //服务器不支持UTF-8格式HTML时候使用ANSI格式HTML文件,即系统默认编码 
        Writer out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(afile),"UTF-8")); 
        t.process(propMap, out); 
      }catch(TemplateException e){ 
        logger.error("Error "+templateFileName,e); 
          return false; 
      }catch(IOException e){ 
        logger.error("Error "+htmlFileName,e); 
          return false; 
      } 
      return true; 
    } 
    
    public static boolean creatDirs(String path){      
        File aFile = new File(path); 
        if(!aFile.exists()){ 
          return aFile.mkdirs(); 
        }else{ 
          return true; 
       } 
    } 
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值