讀取 com.test 包下的bean.properties
1.ResourceBundle
private static ResourceBundle bundle = ResourceBundle.getBundle("com.test.bean");//加載配置文件
String testStr = bundle.getString("test");//獲取鍵為test的值
特點(diǎn):
a. 只能用于讀取properties文件
b. 只能用于讀取妇多,不能用于寫入
c. 只能讀取類路徑下面的虱黄,其他地方的讀取不到
d. 方法參數(shù)的寫法是按照包名.類名的方式寫的尚困,不需要擴(kuò)展名
2.Properties
Properties props = new Properties();
InputStream in = Test.class.getClassLoder().getResourceAsStream("bean.properties");
props.load(in);