赞
踩
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
-
- }
-
- }
个人网站欢迎来访
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。