fastjson 字符串转json

fastjson 把字符串转json时会丢失值是null的键值对

序列化转一下

String json = JSONArray.toJSONString(rstMap.get("data").toString(), SerializerFeature.WriteMapNullValue);
JSONArray rstJsonArray = JSONArray.parseArray(json);

你可能感兴趣的:(json,java,开发语言)