Skip to content
This repository was archived by the owner on Jul 29, 2026. It is now read-only.

JSON_toJSONString_cn

wenshao edited this page May 5, 2016 · 2 revisions

将java对象序列化为JSON字符串,fastjson提供了一个最简单的入口

packagecom.alibaba.fastjson;
publicabstractclassJSON {
publicstaticStringtoJSONString(Objectobject);
}

Sample

importcom.alibaba.fastjson.JSON;
Modelmodel = newModel();
model.id = 1001;
Stringjson = JSON.toJSONString(model);

Clone this wiki locally