net.sf.json.JSONException: java.lang.reflect.InvocationTargetException

net.sf.json.JSONException:java.lang.reflect.InvocationTargetException

atnet.sf.json.JSONObject._fromBean(JSONObject.java:959)

atnet.sf.json.JSONObject.fromObject(JSONObject.java:194)

atnet.sf.json.JSONObject._processValue(JSONObject.java:2793)

atnet.sf.json.JSONObject._setInternal(JSONObject.java:2817)

atnet.sf.json.JSONObject.setValue(JSONObject.java:1527)

atnet.sf.json.JSONObject._fromBean(JSONObject.java:946)

atnet.sf.json.JSONObject.fromObject(JSONObject.java:194)

atnet.sf.json.JSONArray.fromObject(JSONArray.java:194)

atnet.sf.json.JSONArray.fromObject(JSONArray.java:129)

原因是:java.sql.Date不能直接转换成java.util.Date导致的错误

修改方法newjava.util.Date(rs.getDate("date").getTime())set到date类型下

相关推荐