当前位置: 代码迷 >> 综合 >> net.sf.json.JSONException: null object
  详细解决方案

net.sf.json.JSONException: null object

热度:53   发布时间:2024-02-09 17:05:50.0

萌新的异常总结

JSONObject customerInfoJson = JSONObject.fromObject(null);
String bkTime = (String) customerInfoJson.get("BOOK_TIME");//这行导致

异常因为JSNObject为空后,又用JSNObject对象调用get方法故产生 null object的异常。
注:JSONObject customerInfoJson = JSONObject.fromObject(null);
调用fromObject(null)且参数为null并不会报错。

  相关解决方案