org.json.JSONObject的getString如果取不到对应的key会抛出异常问题
org.json.JSONObject的getString如果取不到对应的key会抛出异常
org.json.JSONObject源码
使用阿里巴巴封装的fastjson
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.54</version>
</dependency>
查看源码,如果jsonObject为空,则返回null,避免空指针异常
com.alibaba.fastjson.JSONObject源码