gpt4 book ai didi

java - IO 异常 : The Network Adapter could not establish the connection

转载 作者:行者123 更新时间:2023-11-28 22:20:28 26 4
gpt4 key购买 nike

我正在使用 tomcat 应用服务器并连接到 Oracle 数据库。项目中有一个名为ojdbc14-10g.jar 的文件。在 jsp 页面中,我打开到数据库的连接并获取一些信息。但是,当我刷新页面时,多次出现以下错误:

java.sql.SQLException:Io exception: The Network Adapter could not establish the connection.

String driverName = "oracle.jdbc.driver.OracleDriver";
String url = "jdbc:oracle:thin:@localhost:1521/xe";
String user = "system";
String password = "1234";
String patientName = null;
String sql1 = "select * from patient where pid=?";
try{
Class.forName(driverName);
con = DriverManager.getConnection(url, user, password);
ps = con.prepareStatement(sql1);
ps.setString(1,patientId);
rs = ps.executeQuery();
if(rs.next()){
//Some data is coming
}
con.close();
}
catch(SQLException sqe){
out.println(sqe);
}

此外,我在其他 jsp 页面中使用此代码,而且,超过四次或五次刷新,我得到相同的错误。

你能给我一些建议吗?

最佳答案

java.sql.SQLException: Io exception: The Network Adapter could not establish the connection

只要您的数据库不可访问,就会发生上述异常。 一旦你的数据库启动刷新/反弹你的服务器,它就会解决问题。

关于java - IO 异常 : The Network Adapter could not establish the connection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22337901/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com