当前位置: 技术问答>java相关
unreported exception: java.lang.ClassNotFoundException
来源: 互联网 发布时间:2015-10-02
本文导语: windows2000 + jbuilder7 + weblogic + sqlserver 1.该语句:Class.forName("weblogic.jdbc.mssqlserver4.Driver"); //没有运行时forName下面有红曲线(标记的错误提示是:Error #: 360 : unreported exception: java.lang.ClassNotFoundException; must be caught...
windows2000 + jbuilder7 + weblogic + sqlserver
1.该语句:Class.forName("weblogic.jdbc.mssqlserver4.Driver"); //没有运行时forName下面有红曲线(标记的错误提示是:Error #: 360 : unreported exception: java.lang.ClassNotFoundException; must be caught or declared to be thrown at line 68, column 11)
2.序运行中出现以下的错误提示,并且程序运行不过去:"Frame1.java": Error #: 360 : unreported exception: java.lang.ClassNotFoundException; must be caught or declared to be thrown at line 68, column 11
3.如果该语句注销,那么程序可以运行过去,但是数据库的操作提示以下错误:No suitable driver
请问各位“大虾”着该如何解决问题。
1.该语句:Class.forName("weblogic.jdbc.mssqlserver4.Driver"); //没有运行时forName下面有红曲线(标记的错误提示是:Error #: 360 : unreported exception: java.lang.ClassNotFoundException; must be caught or declared to be thrown at line 68, column 11)
2.序运行中出现以下的错误提示,并且程序运行不过去:"Frame1.java": Error #: 360 : unreported exception: java.lang.ClassNotFoundException; must be caught or declared to be thrown at line 68, column 11
3.如果该语句注销,那么程序可以运行过去,但是数据库的操作提示以下错误:No suitable driver
请问各位“大虾”着该如何解决问题。
|
将catch(SQLException EE)换成catch(Exception EE)试试看
|
2:是你该扑捉异常的地方,,没有扑捉异常。