读取 com.test 包下的bean.properties
1.ResourceBundle
private static ResourceBundle bundle = ResourceBundle.getBundle("com.test.bean");//加载配置文件
String testStr = bundle.getString("test");//获取键为test的值
特点:
a. 只能用于读取properties文件
b. 只能用于读取,不能用于写入
c. 只能读取类路径下面的,其他地方的读取不到
d. 方法参数的写法是按照包名.类名的方式写的,不需要扩展名
2.Properties
Properties props = new Properties();
InputStream in = Test.class.getClassLoder().getResourceAsStream("bean.properties");
props.load(in);
网友评论