或者:是否有另一个能够实现此目的的formatting字符串和parsing字符串(使用同一个对象!)的实用程序?
假设您的目录中包含.au
格式的音频文件,其名称格式为country.code.XX.au
。我们可能希望使用带有模式MessageFormat
的{{1}}来格式化和解析这些文件名的重要部分。
但请考虑一下这个演示:
country.{0}.au
解析结果不一致。在某些情况下,我们会获得public class MessageFormatExercise {
public static void main(String[] args) throws Exception {
java.text.Format f = new java.text.MessageFormat("country.{0}.au");
// String formatting; prints "country.code.us.au" and "country.code.au.au" respectively
System.out.println(f.format(new Object[]{"code.us"}));
System.out.println(f.format(new Object[]{"code.au"}));
// String parsing; prints "code.us" and "code" respectively (not "code.au"!)
System.out.println(((Object[]) f.parseObject("country.code.us.au"))[0]);
System.out.println(((Object[]) f.parseObject("country.code.au.au"))[0]);
}
}
或code.us
,但就澳大利亚而言,我们会得到code.gb
。