标签:需要 并且 str 替换 message 名称 form blog word
String content = "ab,cc,{名称},{密码},{日期},dd,ff"; String array[] = {userName, password, format.format(new Date())}; content = MessageFormat.format(content, array);
解释如下:
content 中需要被替换的就是{}中的参数,array数组中存放的是对应的要替换的参数;使用MessageFormat方法的时候,需要要将这些参数的个数匹配正确,并且数序要指定,否则匹配出错。这样就实现了参数的替换。很简单,也很死板。
MessageFormat:出自java.text包中;
字符串模板替换方法 MessageFormat.format
标签:需要 并且 str 替换 message 名称 form blog word
原文地址:http://www.cnblogs.com/ganchuanpu/p/6127834.html