public void method() throws Exception {
//创建对象
Properties p = new Properties();
//读取src下的属性文件dbInfo.properties
InputStream in = Class.class.getResourceAsStream("/dbInfo.properties");
try {
p.load(in);
//获取参数值
System.out.println(p.getProperty("table2"));
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
读取src下的properties配置文件
最新推荐文章于 2022-01-06 23:31:20 发布