赞
踩
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
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。