MessageFormat类别:快速格式化字符串

MessageFormat 获取一组对象,格这些对象的类型,然后格串类型插入的地方的图案。


第一个样例使用静态的方法 MessageFormat.format。它在内部创建一个仅仅使用一次的 MessageFormat: 

 int planet = 7;
 String event = "a disturbance in the Force";

 String result = MessageFormat.format(
     "At {1,time} on {1,date}, there was {2} on planet {0,number,integer}.",
     planet, new Date(), event);
 输出为: 
 At 12:30 PM on Jul 3, 2053, there was a disturbance in the Force on planet 7.

当中对小数点的处理例如以下:

MessageFormat mf = new MessageFormat("{0,number,#.##}, {0,number,#.#}");

或者用String.format处理

textView.setText(String.format("总价 : ¥%1$.2f", 300));


版权声明:本文博客原创文章,博客,未经同意,不得转载。

原文地址:https://www.cnblogs.com/blfshiye/p/4679495.html