MessageFormat的使用

我们可以在*.properties中配置一下模式(pattern)。

eg:
 class.skeleton= public class {0} extends Trade '{\n\
    \n\
    \tpublic int init() throws Exception\n\
    \t{\n\
    \t\treturn 0;\n\
    \t}\n\
    \n\
}\n' 
 
 
 测试代码:
 public class MessageFormatDemo {
 /**
  * @param args
  */
 public static void main(String[] args) {
  String result = null;
  ResourceBundle rb = ResourceBundle.getBundle("plugin");
  String pattern = rb.getString("class.skeleton");
  System.out.println("pattern: " + pattern);
  result = MessageFormat.format(pattern, "MyTrade");//经此Format,{0}内容会被替换为"MyTrade""
  System.out.println(result);
 }

}

我们可以将所有不确定的东西放到配置文件中去,比如放到*.properties文件中。

键命名规则:
以对话框或视图或编辑器名称作为前缀,以"_"分隔,
eg:
FilteredItemsSelectionDialog_storeError=Storing the dialog failed
FilteredItemsSelectionDialog_restoreError=Restoring the dialog failed

FilteredItemsSelectionDialog_taskProgressMessage={0} ({1}%)
FilteredItemsSelectionDialog_subtaskProgressMessage={0}: {1}

在Eclipse平台中,可以通过ResourceBundle或NLS两种方式从*.properties中获取值


 
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值