首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Exception >

unreported exception java.lang.InstantiationException; must be caught

2014-01-26 
D:\JCreatorV3\MyProjects\DisplayAuthors.java:17: unreported exception java.lang.InstantiationExcepti

D:\JCreatorV3\MyProjects\DisplayAuthors.java:17: unreported exception java.lang.InstantiationException; must be caught or declared to be thrown
  Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();//加载驱动程序                                               
  这是为什么啊 ?   

------解决方法--------------------------------------------------------
 
  try{
  Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
  }catch(Exception e){
  }

        

热点排行