JAVA如何读取指定路径的properties文件 不是在工程下的

2024年11月29日 11:53
有1个网友回答
网友(1):

public static Properties p =null;
static{
p =System.getProperties() ;
try {
p.load(new FileInputStream(new File("D:\\PIC\\srv_cfg.properties")));
} catch (Exception e) {
e.printStackTrace();
}
System.out.println(p.getProperty("common.config"));
}