我想从名为 jdbc.properties 的属性文件中读取一行。它位于src\main\webapp\WEB-INF\db\jdbc.properties
. 我应该使用什么路径?这是我的方法:
Properties prop = new Properties();
try {
// load a properties file
prop.load(new FileInputStream("jdbc.properties"));
System.out.println(prop.getProperty("password"));
} catch (IOException ex) {
ex.printStackTrace();
}