fastjson中toString与toJSONString的差别
2021-05-07 05:28
标签:over ide code div ring 调用 obj serialize 方法 查看JSONObject源码: 其实toString()方法内部还是调用了toJSONString()方法 fastjson中toString与toJSONString的差别 标签:over ide code div ring 调用 obj serialize 方法 原文地址:https://www.cnblogs.com/zouhong/p/12091493.html @Override
public String toString() {
return toJSONString();
}
public String toJSONString() {
SerializeWriter out = new SerializeWriter();
try {
new JSONSerializer(out).write(this);
return out.toString();
} finally {
out.close();
}
}
文章标题:fastjson中toString与toJSONString的差别
文章链接:http://soscw.com/index.php/essay/83536.html