Fastjson中toJSONString具有什么功能呢?
下文笔者讲述fastjson中toJSONString的功能简介说明,如下所示
toJSONString的功能简介
Fastjson之toJSONString的功能: 将java对象序列化为JSON字符串例:
import com.alibaba.fastjson.JSON; Model model = new Model(); model.id = 8999; String json = JSON.toJSONString(model);
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。