try catch throw在编程里面的应用
Posted luzhanshi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了try catch throw在编程里面的应用相关的知识,希望对你有一定的参考价值。
我们可以在try里面写代码,在一些异常情况下我们throw new Exception("不存在此挂号预约");
这样在catch (Exception e)里面我们就可以获取异常信息,并作相应的返回信号
public Map<String, Object> PUTGHYSQX(Map<String, Object> reqMap) { Map<String, Object> resultMap = new HashMap<String, Object>(); try { resultMap.put("code", "0"); resultMap.put("msg", "SUCCESS"); String shxh = CommUtil.getStringVal(reqMap, "shxh"); if (CommUtil.checkNull(shxh)) { throw new Exception("锁号序号shxh不能为空!"); } String patid = CommUtil.getStringValNull(reqMap, "patid"); if (CommUtil.checkNull(patid)) { throw new Exception("门诊patid不能为空!"); } List<Map> ghyy = queryGHYY(new HashMap() { { put("ORDERID", shxh); } }); if (ghyy.size() == 0) { throw new Exception("不存在此挂号预约"); } if (CommUtil.getIntVal(ghyy.get(0), "F_ZFZT") == 1) { throw new Exception("此挂号预约已支付,不能取消"); } if (CommUtil.getIntVal(ghyy.get(0), "F_HasGH") == 1) { throw new Exception("此挂号预约已挂号,不能取消"); } if (CommUtil.getIntVal(ghyy.get(0), "F_ISTY") == 1) { throw new Exception("此挂号预约已退约"); } updateTable(Constants.MZ_GHYY, new HashMap(){ { put("ORDERID", shxh); } }, new HashMap(){ { put("F_ISTY", 1); } }); subYSSYHYHZ(ghyy.get(0).get("KSBM").toString(), ghyy.get(0).get("YS").toString(), Integer.parseInt(ghyy.get(0).get("RQ").toString()), Integer.parseInt(ghyy.get(0).get("APM").toString())); subYSSYHYMX(ghyy.get(0).get("KSBM").toString(), ghyy.get(0).get("YS").toString(), Integer.parseInt(ghyy.get(0).get("RQ").toString()), Integer.parseInt(ghyy.get(0).get("APM").toString()), ghyy.get(0).get("SJD").toString()); } catch (Exception e) { resultMap.put("code", "-1"); resultMap.put("msg", "FAIL"); resultMap.put("result", e.getMessage()); getLogger().error(e.getMessage()); } return resultMap; }
以上是关于try catch throw在编程里面的应用的主要内容,如果未能解决你的问题,请参考以下文章
java中异常有时要自己try-catch,有时又throws。还有同时两种都进行。到底该怎么分析处理异常?
JAVA语言如何进行异常处理,关键字throws,throw,try,catch,finally分别代表啥意义在try块中抛出异常吗