net.sf.json.JSONObject 为null 的判断方法
程序员文章站
2024-03-06 13:37:56
做项目时,遇到这么一个坑:如何判断一上json 是否为空,
开始的代码是这样的:
jsonobject detail = jsonobject.fromo...
做项目时,遇到这么一个坑:如何判断一上json 是否为空,
开始的代码是这样的:
jsonobject detail = jsonobject.fromobject("123"); if (detail == null) { detail = new jsonobject(); }
发现有问题,无论怎么调整字符串的内容,都不会走 new jsonobject() 。各种试,各种问,最后没办法了,拿detail 的方法一个个试,才发现居然有 isnullobject() 这样一个方法,于是有了下面的代码,
jsonobject detail = jsonobject.fromobject("123"); if (detail == null || detail.isnullobject()) { detail = new jsonobject(); }
这么长时间,各种坑都踩,以后还会有坑,解决方案:
1. 网上找下有没有类似的问题;
2. 像今天这种情况,类可能已经提供了可用方法,试其中的方法;
3. 同事是很好的老师,多问,面子啥的在这里最不值钱了。
以上这篇net.sf.json.jsonobject 为null 的判断方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。