使用Properties配置Servlet连接数据库信息。
String driver ="";
String url = "";
String user = "";
String password = "";
try {
Properties ps = new Properties();
ps.load(this.getClass().getResourceAsStream("db.txt"));//这一句,db放置默认放置在web-inf\classes下
driver = ps.getProperty("driver");
url = ps.getProperty("url");
user = ps.getProperty("user");
password = ps.getProperty("password");
}
catch (Exception ex) {
out.println(ex.toString()+"文件读取错误!");
}
其中,标识的那一句,db。txt是放在了classes下。如果我把db。txt放置在和web-inf同级的目录下,应该使用怎样的相对路径??
使用Properties类配置Servlet文件