我需要從數據庫檢索數據,如果沒有在dB中找到數據我需要在java中激發一個彈出窗口。即時通訊給我在這裏寫的代碼來處理,但無法處理它。java異常處理
String SectorCode = employerProfile.getSectorCode().getSectorTypeId();
String IndustrialCode = employerProfile.getIndustrialCode().getIndustryTypeId();
try{
if(SectorCode==null || IndustrialCode==null){
JOptionPane.showMessageDialog(null, "Record not found");
}
}catch(Exception ex){
ex.printStackTrace();
}
請給我建議的解決方案... 在此先感謝
那麼,什麼是真正的問題?它拋出異常嗎?沒有看到對話框? – 2010-12-15 06:32:34
是它的拋出異常...但用戶需要彈出窗口,當沒有文件存在dB .. – charan 2010-12-15 06:36:23
@ charan ...當這個調用拋出異常...可能是incase沒有找到記錄.. ?? M我...? – water 2010-12-15 06:38:16