Java 通过使用freemarker,动态填充字符串模板

一、通过使用freemarker标签,实现动态填充字符串模板,到maven仓库选择需要的版本下载:freemarker.jar

二、example:

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

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

public class StrTemplate {
	public static void main(String[] args) throws IOException, TemplateException{
		String StrTemplate = "姓名:${name};年龄:${age}"; // 测试模板数据(一般存储在数据库中)
		Map map = new HashMap();  // map,需要动态填充的数据
		map.put("name", "张三");
		map.put("age", "25");
		String resultStr = process(StrTemplate, map, null); // 解析字符串模板的方法,并返回处理后的字符串
		System.out.println(resultStr);
	}
	/**
	 * 解析字符串模板,通用方法
	 * 
	 * @param template
	 *            字符串模板
	 * @param model; 
	 *            数据
	 * @param configuration
	 *            配置
	 * @return 解析后内容
	 */
	public static String process(String template, Map model, Configuration configuration) 
			throws IOException, TemplateException {
		if (template == null) {
			return null;
		}
		if (configuration == null) {
			configuration = new Configuration();
		}
		StringWriter out = new StringWriter();
		new Template("template", new StringReader(template), configuration).process(model, out);
		return out.toString();
	}
}

三、输出结果:

Java 通过使用freemarker,动态填充字符串模板_第1张图片

你可能感兴趣的:(Eclipse)