ftl模板

ftl模版文件生成静态页面 

2012-02-16 15:48:40|  分类: coding |字号 订阅
action部分代码:
public class Cretehtml {
    private Map<String,Object> root=new HashMap<String, Object>();
    //生成静态化页面
    public String execute() throws Exception {
        //将用到的变量存放到root
        root.put("name", member.getName());
        root.put("userid", member.getUserId());
        root.put("age", member.getAge());
        //静态页面的完整路径
        String str=ServletActionContext.getServletContext().getRealPath("/")+"/statichtml/index.html";
        File file=new File(str);
        //如果静态文件存在,则删除静态页面之后重新生成
        if(file.isFile()&&file.exists()){
            file.delete();           
        }
        str=null;//释放资源
        if(file!=null)file=null;
        StaticFreemarker.createHTML(ServletActionContext.getServletContext(), root, "sy/index.ftl", "/statichtml/index.html");
        return "firstpage";
    }
}
StaticFreemarker 类:
/**
     *
     * @param context             
     * @param data                传送的数据
     * @param templatePath        ftl路径
     * @param targetHtmlPath      生成html文件的路径
     */
    class StaticFreemarker {
        public static void createHTML(ServletContext context,Map<String,Object>data,String templatePath,String targetHtmlPath) {
            Configuration cfg = new Configuration();
            cfg.setServletContextForTemplateLoading(context, "/WEB-INF/template/");//ftl的基本路径
            cfg.setEncoding(Locale.getDefault(), "utf-8");//设置编码
            Writer out = null;
            try {
                Template t = cfg.getTemplate(templatePath, "utf-8");//获取模板文件
                t.setEncoding("utf-8");           
                //静态页面路径设置
                String htmlPath = context.getRealPath("/")+"/"+targetHtmlPath;
                File htmlFile = new File(htmlPath);
                out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(htmlFile),"utf-8"));
                t.process(data, out);//将数据写到静态页面           
            } catch (Exception e) {
                e.printStackTrace();
            } finally{
                if(out != null){
                    try {
                        out.flush();
                        out.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }           
            }
        }
    }

你可能感兴趣的:(freemarker)