Fastjson toJSONString
Fastjson toJSONString
FastjsonJava オブジェクトを JSON 文字列にシリアル化します。fastjson は最も簡単な入り口を提供します
package com.alibaba.fastjson; public abstract class JSON { public static String toJSONString(Object object); }
サンプル
import com.alibaba.fastjson.JSON; Model model = new Model(); model.id = 1001; String json = JSON.toJSONString(model);