Java中MessageFormat的使用
banner 2020-08-19 jdk
MessageFormat.format(String pattern, Object ... arguments)
1
# MessageFormat模式(主要部分):
FormatElement:
{ ArgumentIndex }:是从0开始的入参位置索引。
{ ArgumentIndex , FormatType }
{ ArgumentIndex , FormatType , FormatStyle }
FormatType: :指定使用不同的Format子类对入参进行格式化处理。值范围如下:
number:调用NumberFormat进行格式化
date:调用DateFormat进行格式化
time:调用DateFormat进行格式化
choice:调用ChoiceFormat进行格式化
FormatStyle::设置FormatType中使用的格式化样式。值范围如下:
short
medium
long
full
integer
currency
percent
SubformatPattern (子格式模式,形如#.##)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
以str为例,在这个字符串中:
1. {0} 和 {1,number,short} 和 {2,number,#.#}; 都属于FormatElement,0,1,2是ArgumentIndex。
2. {1,number,short} 里面的number属于FormatType,short则属于FormatStyle。
3. {1,number,#.#} 里面的#.#就属于子格式模式。
1
2
3
2
3
指定FormatType和FormatStyle是为了生成日期格式的值、不同精度的数字、百分比类型等等。
关于MessageFormat的详细资料请参阅JAVA文档: http://docs.oracle.com/javase/7/docs/api/java/text/MessageFormat.html (opens new window)