【中文资源】Zookper.Me_zh_CN.properties |
# 注释信息 info = 你好{0}同学!当前日期:{1}. |
【英文资源】Zookper.Me_en_US.properties |
info = Hello {0}! data:{1} |
如果有需要也可以进行{1}、{2}等的内容添加。 (花括号就是占位符)
此时读取信息的时候会将占位符一起读取出来,所以需要下一步操作:
需要利用MessageFormat类进行格式化处理。
在MessageFormat类中提供有一个格式化文本的操作:public static String format (String pattern,Object... arguments)
import java.text.MessageFormat; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; import java.util.ResourceBundle; public class Main { public static void main(String[] args) { Locale loc = new Locale("en","US"); ResourceBundle res = ResourceBundle.getBundle("Zookper.Me",loc); // 读取 String val = res.getString("info"); // 传入键,返回值 System.out.println(MessageFormat.format(val,"cdulm",new SimpleDateFormat("yyyy-MM-dd").format(new Date()))); // 传入键和两个占位符的值 } }
所以在以后文件中出现了{0}、{1}等结构都表示是占位符,这类信息一定要进行格式化处理。