FreeMarker解析字符串模板

 重写Freemarker的模板加载器即可:
package cn.com.aweb.vote.test.other;

import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.util.HashMap;
import java.util.Map;

import freemarker.cache.TemplateLoader;

public class StringTemplateLoader implements TemplateLoader {

private static final String DEFAULT_TEMPLATE_KEY = "_default_template_key" ;
private Map templates = new HashMap();

public StringTemplateLoader(String defaultTemplate) {
if (defaultTemplate != null && !defaultTemplate.equals(
"" )) {
templates.put(DEFAULT_TEMPLATE_KEY, defaultTemplate);
}
}

public void AddTemplate(String name, String template) {
if (name == null || template == null || name.equals(
"" )
|| template.equals(
"" )) {
return;
}
if (!templates.containsKey(name)) {
templates.put(name, template);
}
}

public void closeTemplateSource(Object templateSource)
throws IOException {

}

public Object findTemplateSource(String name) throws IOException {
if (name == null || name.equals(
"" )) {
name = DEFAULT_TEMPLATE_KEY;
}
return templates.get(name);
}

public long getLastModified(Object templateSource) {
return 0;
}

public Reader getReader(Object templateSource, String encoding)
throws IOException {
return new StringReader((String) templateSource);
}

}

测试类:
package cn.com.aweb.vote.test.other;

import java.io.StringWriter;
import java.util.HashMap;
import java.util.Map;

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

public class Test{

public static void main(String[] args) throws Exception {
Configuration cfg = new Configuration();    
        cfg.setTemplateLoader(new StringTemplateLoader(
"hello:${user}" ));    
        cfg.setDefaultEncoding(
"UTF-8" );    
  
        Template template = cfg.getTemplate(
"" );    
            
        Map root = new HashMap();    
        root.put(
"user" , "lunzi" );    
            
        StringWriter writer = new StringWriter();    
        template.process(root, writer);    
        System.out.println(writer.toString());          
}
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值