码迷,mamicode.com
首页 > 其他好文 > 详细

freemaker使用小例子

时间:2014-08-18 14:20:22      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   os   io   文件   数据   

在项目中有一些只有部分变动的数据使用模板技术能达到很好的效果,其重用性大大提高。笔者今天讲的是freemaker的一个使用。

1. 引入freemaker jar包

    

           <dependency>
                <groupId>org.freemarker</groupId>
                <artifactId>freemarker</artifactId>
                <version>2.3.20</version>
            </dependency>

2. 创建工具类

  

public class FreeMarkerUtil {
    static Configuration cfg;
    Template template;
    
    static {
        try {
            getConfiguration();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    
    private static void getConfiguration() throws IOException {
        cfg = new Configuration();
        // classpath下
        String path = Thread.currentThread().getContextClassLoader()
                .getResource("./").getPath();
        File templateDirFile = new File(path);
        cfg.setDirectoryForTemplateLoading(templateDirFile);
        cfg.setDefaultEncoding("UTF-8");
    }

    // 获取处理后的模板数据
    public String getProcessedTemplateData(String templateName,
            Map<String, Object> params) {
        try {
            template = cfg.getTemplate(templateName);
            StringWriter result = new StringWriter();
            template.process(params, result);
            return result.toString();

        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

    // 生成文件
    public boolean generateFile(String templateName, Map<String, Object> params) {
        try {
            template = cfg.getTemplate(templateName);
            FileUtils.forceMkdir(new File("D:\\"));
            OutputStreamWriter out = new OutputStreamWriter(
                    new FileOutputStream("D:\\xxx.html"),
                    "UTF-8");
            template.process(params, out);
            out.close();
        } catch (Exception e) {
            return false;
        }
        return true;
    }
}

两种方式操作,方便简单。

freemaker使用小例子,布布扣,bubuko.com

freemaker使用小例子

标签:style   blog   color   使用   os   io   文件   数据   

原文地址:http://www.cnblogs.com/dmc-tec/p/3919356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!