fastJson解析空指针异常与防范
fastjson
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
项目地址:https://gitcode.com/gh_mirrors/fastj/fastjson
免费下载资源
·
0x01 问题描述
正常情况下fastJson解析失败会抛异常,但解析字符串数据为null、”“、“ ”这些情况下,fastJson返回null对象而不会抛异常,这样在调用对象时就导致了空指针异常的问题。
0x02 解决方案
对此,不亦对其进行了一个简单的封装,在上述情况解析出null对象时直接抛异常。
0x03 代码
import com.alibaba.fastjson.JSON;
public class JsonUtil{
public static <T> T parseObject(String text, Class<T> clazz) throws Exception{
try {
T t= JSON.parseObject(text,clazz);
if(null==t) {
throw new Exception("parseObject NullPointerException");
}else {
return t;
}
} catch (Exception e) {
throw e;
}
}
}
【转载请注明出处: http://blog.csdn.net/leytton/article/details/79456895】
PS:如果本文对您有帮助,请点个赞让我知道哦~
GitHub 加速计划 / fastj / fastjson
25.69 K
6.51 K
下载
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
最近提交(Master分支:3 个月前 )
c942c834 - 1 年前
5bc4709b - 1 年前
更多推荐
已为社区贡献7条内容
所有评论(0)