我是靠谱客的博主 谦让微笑,最近开发中收集的这篇文章主要介绍java模板替换_java 替换字符串模板(模板渲染),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

java渲染字符串模板,也就是说在java字符串模板中设置变量字符串,使用变量去渲染指定模板中设置好的变量字符串。下面介绍4种替换模板方式:

1、使用内置String.formatString message = String.format("您好%s,晚上好!您目前余额:%.2f元,积分:%d", "张三", 10.155, 10);

System.out.println(message);

//您好张三,晚上好!您目前余额:10.16元,积分:10

2、使用内置MessageFormatString message = MessageFormat.format("您好{0},晚上好!您目前余额:{1,number,#.##}元,积分:{2}", "张三", 10.155, 10);

System.out.println(message);

//您好张三,晚上好!您目前余额:10.16元,积分:10

3、使用自定义封装public static String processTemplate(String template, Map params){

StringBuffer sb = new StringBuffer();

Matcher m = Pattern.compile("\$\{\w+\}").matcher(template);

while (m.find()) {

String param = m.group();

Object value = params.get(param.substring(2, param.length() - 1));

m.appendReplacement(sb, value==null ? "" : value.toString());

}

m.appendTail(sb);

return sb.toString();

}

public static void main(String[] args){

Map map = new HashMap();

map.put("name", "张三");

map.put("money", String.format("%.2f", 10.155));

map.put("point", 10);

message = processTemplate("您好${name},晚上好!您目前余额:${money}元,积分:${point}", map);

System.out.println(message);

//您好张三,晚上好!您目前余额:10.16元,积分:10

}

4、使用模板引擎freemarker

首先引入freemarker.jar,这里以2.3.23版本为例,如果使用maven的配置pom.xml

org.freemarker

freemarker

2.3.23

try {

map = new HashMap();

map.put("name", "张三");

map.put("money", 10.155);

map.put("point", 10);

Template template = new Template("strTpl", "您好${name},晚上好!您目前余额:${money?string("#.##")}元,积分:${point}", new Configuration(new Version("2.3.23")));

StringWriter result = new StringWriter();

template.process(map, result);

System.out.println(result.toString());

//您好张三,晚上好!您目前余额:10.16元,积分:10

}catch(Exception e){

e.printStackTrace();

}

综合,完整示例:package com.weizhixi.util;

import freemarker.template.Configuration;

import freemarker.template.Template;

import freemarker.template.Version;

import java.io.StringWriter;

import java.text.MessageFormat;

import java.util.HashMap;

import java.util.Map;

import java.util.regex.Matcher;

import java.util.regex.Pattern;

/**

* Created by cxq on 2018-01-07.

*/

public class Tpl {

public static Configuration cfg;

static {

cfg = new Configuration(new Version("2.3.23"));

}

public static void main(String[] args) {

Object[] obj = new Object[]{"张三", String.format("%.2f", 10.155), 10};

System.out.println(processFormat("您好%s,晚上好!您目前余额:%s元,积分:%d", obj));

System.out.println(processMessage("您好{0},晚上好!您目前余额:{1}元,积分:{2}", obj));

Map map = new HashMap();

map.put("name", "张三");

map.put("money", String.format("%.2f", 10.155));

map.put("point", 10);

System.out.println(processTemplate("您好${name},晚上好!您目前余额:${money}元,积分:${point}", map));

System.out.println(processFreemarker("您好${name},晚上好!您目前余额:${money}元,积分:${point}", map));

}

/**

* String.format渲染模板

* @param template 模版

* @param params   参数

* @return

*/

public static String processFormat(String template, Object... params) {

if (template == null || params == null)

return null;

return String.format(template, params);

}

/**

* MessageFormat渲染模板

* @param template 模版

* @param params   参数

* @return

*/

public static String processMessage(String template, Object... params) {

if (template == null || params == null)

return null;

return MessageFormat.format(template, params);

}

/**

* 自定义渲染模板

* @param template 模版

* @param params   参数

* @return

*/

public static String processTemplate(String template, Map params) {

if (template == null || params == null)

return null;

StringBuffer sb = new StringBuffer();

Matcher m = Pattern.compile("\$\{\w+\}").matcher(template);

while (m.find()) {

String param = m.group();

Object value = params.get(param.substring(2, param.length() - 1));

m.appendReplacement(sb, value == null ? "" : value.toString());

}

m.appendTail(sb);

return sb.toString();

}

/**

* Freemarker渲染模板

* @param template 模版

* @param params   参数

* @return

*/

public static String processFreemarker(String template, Map params) {

if (template == null || params == null)

return null;

try {

StringWriter result = new StringWriter();

Template tpl = new Template("strTpl", template, cfg);

tpl.process(params, result);

return result.toString();

} catch (Exception e) {

return null;

}

}

}

08141478c915f303bf8c8f7212e70ca4.png

java模板渲染完整示例.zip

f86175b778d47720dcc17230dffb9de4

已下载:223 次

原创文章,转载请注明出处:https://www.weizhixi.com/article/53.html

最后

以上就是谦让微笑为你收集整理的java模板替换_java 替换字符串模板(模板渲染)的全部内容,希望文章能够帮你解决java模板替换_java 替换字符串模板(模板渲染)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部