為甚麼加載ORACLE8.05的驅動程序會出錯(100分)

  • 主题发起人 主题发起人 yby
  • 开始时间 开始时间
Y

yby

Unregistered / Unconfirmed
GUEST, unregistred user!
j2sdk1.4.0_01,oracel8.05
出錯提示:
login.java:15:unreported exception java.sql.sqlexception;must be caught or
declared to be thrown
drivermanager.getconnection(sourceurl,user,password);
login.java:15:unreported exception java.sql.sqlexception;must be caught or
declared to be thrown
databaseconnection.close();
 
怎麼沒有人回答呀
 
在你的程序里面加上
try {
//你的程序
}catch(Exceptoin e) {
//对异常的处理
}
 
该连接方法必须要求捕获异常,可在你的方法后加上throws格式抛出异常给JVM来避免出现该编译问题
public void xxxxx() throws SQLException
{
....
}
 
后退
顶部