SimpleDateFormat lst = new SimpleDateFormat("yyyy-MM-dd");
TransLogInfo transLogInfo = transLogInfoService.QueryTransLogInfo("intTxnDt");
String log = transLogInfo.getIntTxnDt();
Date logTime =lst.parse(log);
GregorianCalendar gc=new GregorianCalendar();
gc.setTime(logTime);
我想把數據庫裡的時間取出來,和當前時間進行比較,可是這段代碼在運行的時候出現了問題
Error calling method through OGNL:
報的錯誤好像是“String log = transLogInfo.getIntTxnDt()”不能這得到,空指針錯誤.
SimpleDateFormat lst = new SimpleDateFormat("yyyy-MM-dd");
TransLogInfo transLogInfo = transLogInfoService.QueryTransLogInfo("intTxnDt");
if(transLogInfo != null){
String log = transLogInfo.getIntTxnDt();
}
Date logTime =lst.parse(log);
GregorianCalendar gc=new GregorianCalendar();
gc.setTime(logTime);