萌新的异常总结
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并不会报错。