码迷,mamicode.com
首页 > 其他好文 > 详细

字符串模板替换方法 MessageFormat.format

时间:2016-12-03 07:38:57      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:需要   并且   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!