如何使用参数名称而不是数字格式化消息?

时间:2011-03-28 18:58:37

标签: java string-formatting

我有类似的东西:

String text = "The user {0} has email address {1}."
// params = { "Robert", "myemailaddr@gmail.com" }
String msg = MessageFormat.format(text, params);

这对我来说并不好,因为有时候我的翻译人员不确定{0}和{1}中的内容是什么,也很高兴能够重新编写消息而不必担心args的顺序

我想用可读的名称而不是数字替换参数。像这样:

String text = "The user {USERNAME} has email address {EMAILADDRESS}."
// Map map = new HashMap( ... [USERNAME="Robert", EMAILADDRESS="myemailaddr@gmail.com"]
String msg = MessageFormat.format(text, map);

有一种简单的方法吗?

谢谢! 抢劫

6 个答案:

答案 0 :(得分:28)

您可以使用MapFormat。在此处了解详情:

http://www.java2s.com/Code/Java/I18N/AtextformatsimilartoMessageFormatbutusingstringratherthannumerickeys.htm

String text = "The user {name} has email address {email}.";
            Object[] params = { "nameRobert", "rhume55@gmail.com" };
            Map map = new HashMap();
            map.put("name", "Robert");
            map.put("email", "rhume55@gmail.com");

System.out.println("1st : " + MapFormat.format(text, map));

OUTPUT:1st:用户Robert的电子邮件地址为rhume55@gmail.com。

答案 1 :(得分:17)

请参阅document.getElementById("table2").rows[a].cells.item(4).innerHTML中的StrSubstitutor

org.apache.commons.lang3

答案 2 :(得分:11)

很容易自己制作一个。这就是我使用的(main()函数仅用于测试代码):

import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class StringTemplate {
    final private String template;
    final private Matcher m;
    static final private Pattern keyPattern = 
        Pattern.compile("\\$\\{([a-zA-Z][a-zA-Z0-9_]*(\\.[a-zA-Z][a-zA-Z0-9_]*)*)\\}");
    private boolean blanknull=false;

    public StringTemplate(String template) { 
        this.template=template;
        this.m = keyPattern.matcher(template);
    }

    /**
     * @param map substitution map
     * @return substituted string
     */
    public String substitute(Map<String, ? extends Object> map)
    {
        this.m.reset();
        StringBuffer sb = new StringBuffer();
        while (this.m.find())
        {
            String k0 = this.m.group();
            String k = this.m.group(1);
            Object vobj = map.get(k);
            String v = (vobj == null) 
                ? (this.blanknull ? "" : k0)
                : vobj.toString();
            this.m.appendReplacement(sb, Matcher.quoteReplacement(v));
        }
        this.m.appendTail(sb);
        return sb.toString();       
    }

    public StringTemplate setBlankNull()
    {
        this.blanknull=true;
        return this;
    }

    static public void main(String[] args)
    {
        StringTemplate t1 = new StringTemplate("${this} is a ${test} of the ${foo} bar=${bar} ${emergency.broadcasting.system}");
        t1.setBlankNull();
        Map<String, String> m = new HashMap<String, String>();
        m.put("this", "*This*");
        m.put("test", "*TEST*");
        m.put("foo", "$$$aaa\\\\111");
        m.put("emergency.broadcasting.system", "EBS");
        System.out.println(t1.substitute(m));
    }
}

答案 3 :(得分:1)

您的问题与以下内容密切相关:How to replace a set of tokens in a Java String 您可以使用velocity或其他模板库。但是会有一些痛苦,因为Java没有任何类型的Map文字。

答案 4 :(得分:1)

static final Pattern REPLACE_PATTERN = Pattern.compile("\\x24\\x7B([a-zA-Z][\\w\\x2E].*?)\\x7D");

/**
 * Check for unresolved environment
 *
 * @param str
 * @return origin if all substitutions resolved
 */
public static String checkReplacement(String str) {
    Matcher matcher = REPLACE_PATTERN.matcher(str);
    if (matcher.find()) {
        throw LOG.getIllegalArgumentException("Environment variable '" + matcher.group(1) + "' is not defined");
    }
    return str;
}

// replace in str ${key} to value
public static String resolveReplacement(String str, Map<String, String> replacements) {
    Matcher matcher = REPLACE_PATTERN.matcher(str);
    while (matcher.find()) {
        String value = replacements.get(matcher.group(1));
        if (value != null) {
            str = matcher.replaceFirst(replaceWindowsSlash(value));
        }
    }
    return str;
}

但是你放弃了所有格式选项(比如##。#)

答案 5 :(得分:1)

我知道我的答案有点晚了,但如果您仍然需要此功能,无需下载完整的模板引擎,您可以查看aleph-formatter(我是其中一位作者) :

String result = template("#{x} + #{y} = #{z}")
                    .args("x", 5, "y", 10, "z", 15)
                    .format();
System.out.println(result);

// Output: "5 + 10 = 15"

或者你可以链接参数:

$this->db->distinct();

在内部,它使用StringBuilder通过“解析”表达式创建结果,不执行字符串连接,执行正则表达式/替换。