李毅吧 关注:33,980,420贴子:993,615,353
  • 0回复贴,共1

代码帝过来帮看一下,为何连不上数据库

只看楼主收藏回复

public Connection getConection2() throws Exception {
Properties info = new Properties();
info.load(new FileInputStream("jdbc.properties"));
String user = info.getProperty("user");
String password = info.getProperty("password");
String url = info.getProperty("url");
String driver = info.getProperty("driver");
Class.forName(driver);
Connection conn = DriverManager.getConnection(url, user, password);
return conn;
}


IP属地:山西1楼2016-03-26 18:14回复