JAVA中 fastjson判断JSONObject是否为空
package com.map;
import com.alibaba.fastjson.JSONObject;
/**
* 判断JSONObject是否为空
* @author luolei
* @date 2019年2月14日
*/
public class FastJSONTest {
public static void main(String[] args){
JSONObject obj = new JSONObject();
System.out.println(obj.isEmpty()); //true
obj.put("name", "luolei");
System.out.println(obj.isEmpty()); //false
}
}