Fastjson vers JSONString
Fastjson toJSONString
FastjsonSérialise les objets Java en chaînes JSON, fastjson fournit l'entrée la plus simple
package com.alibaba.fastjson; public abstract class JSON { public static String toJSONString(Object object); }
Sample
import com.alibaba.fastjson.JSON; Model model = new Model(); model.id = 1001; String json = JSON.toJSONString(model);