Fast Json 笔

0. Jar 包

下载地址

1.Json → 对象
Bean bean = JSON.parseObject(jsonString, Bean.class);
2.对象 → Json
String jsonString = JSON.toJSONString(bean);
3.Json → Map
Map jsonMap = JSON.parseObject(jsonString, new TypeReference>() {});
4.Json → List
List jsonList = JSON.parseArray(jsonString, Bean.class);

2017/1/22 13:02:27

你可能感兴趣的:(Fast Json 笔)