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

ActionListener中怎么解决SQLException

2014-01-26 
ActionListener中怎么解决SQLException?我写了一个listener,在actionPerformed方法中调用了一个getdata方法

ActionListener中怎么解决SQLException?

我写了一个listener,在actionPerformed方法中调用了一个getdata方法,getdata方法通过jdbc从数据库中取数据。但是编译时总报错"未处理的异常类型SQLException",如果在actionPerformed方法后加上"throws SQLException" 又会报错"异常SQLException与ActionListener.actionPerformed(ActionEvent)中的 throws子句不兼容"。这是怎么回事?

------解决方法--------------------------------------------------------
用try{} catch() {} 语句

        

热点排行