JSONObject转string的时候数组里面null值被自动过滤

JSONObject jsonObject = JSON.parseObject(result);

jsonObject .toString()方法会导致过滤为null。

解决方法:

JSONObject.toJSONString(jsonObject, SerializerFeature.WriteMapNullValue);

你可能感兴趣的:(JSONObject转string的时候数组里面null值被自动过滤)