2020-10-31

本文介绍了Java中渲染字符串模板的四种方法:1) 使用`String.format`,2) 使用`MessageFormat`,3) 自定义封装替换模板中的变量,4) 使用模板引擎FreeMarker。通过示例代码详细展示了每种方法的使用方式,帮助读者理解如何在Java中灵活处理字符串模板。
摘要由CSDN通过智能技术生成

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

 

 

1、使用内置String.format

String message = String.format("您好%s,晚上好!您目前余额:%.2f元,积分:%d""张三"10.15510);

System.out.println(message);

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

 

2、使用内置MessageFormat

String message = MessageFormat.format("您好{0},晚上好!您目前余额:{1,number,#.##}元,积分:{2}""张三"10.15510);

System.out.println(message);

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

 

3、使用自定义封装

public static String processTemplate(String template, Map<String, Object> 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

<dependency>

  <groupId>org.freemarker</groupId>

  <artifactId>freemarker</artifactId>

  <version>2.3.23</version>

</dependency>

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<String, Object> 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<String, Object> 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;

        }

    }


}

转载出处:https://www.weizhixi.com/user/index/article/id/53.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值