如数字上加逗号,保留小数点后面两位(会自动四舍五入),百分比,货币等。
参考实例: http://www.java2s.com/Code/Java/Development-Class/MessageFormat.htm
import java.text.MessageFormat;
public class Test {
public static void main(String[] args) {
Object[] params = { new Integer(123), new Double(1222234.567) };
String msg = MessageFormat.format("{0,number,percent} and {1,number,,###.##}", params);
System.out.println(msg);
}
}