Java读取配置文件

基本读取:

ResourceBundle resourcebundle = ResourceBundle.getBundle("datasource");
String str =  resourcebundle.getString("name");

datasource:配置文件名称,系统默认后缀为properties所以这里不用加后缀。

name:配置文件属性名(key),用来取值(value)。


带占位符的读取:

在配置文件中如果有需要改变的信息可以使用占位符 "{数字}"来标记,取出数据然后使用MessageFormat类进行填充;

ResourceBundle resourcebundle = ResourceBundle.getBundle("datasource");
String str =  resourcebundle.getString("name");
System.out.println(MessageFormat.format(str, "张先生",new SimpleDateFormat
("yyyy-MM-dd HH:mm:ss").format(new Date())));

格式:MessageFormat.format(取出的字符串,一号位数据,二号位数据。。。。);因为是可变参数,所以占位符从0开始。

你可能感兴趣的:(Java)