jsonobject判空
时间: 2023-05-17 14:04:19 浏览: 88
JsonObject
5星 · 资源好评率100%
在Java中,可以使用以下代码来判断一个JSONObject是否为空:
if(jsonObject == null || jsonObject.isEmpty()){
//JSONObject为空
}
其中,jsonObject是一个JSONObject对象。如果该对象为null或者为空,则可以判定该JSONObject为空。
阅读全文
JsonObject