fastjson JSONObject 怎么设置成有序
fastjson
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
项目地址:https://gitcode.com/gh_mirrors/fastj/fastjson
免费下载资源
·
JSONObject 的源码构造方法是以下写法
public JSONObject(int initialCapacity, boolean ordered) {
if(ordered) {
this.map = new LinkedHashMap(initialCapacity);
} else {
this.map = new HashMap(initialCapacity);
}
}
public JSONObject() {
this(16, false);
}
从上面我们可以知道JSONObject 默认是无序的,所以如果我需要json是有序的话这样写就可以了
JSONObject jsonObject = new JSONObject(16, true);
true 就是new LinkedHashMap 这个的。搜了好久,还是自己去看了源码有收获耶耶
最后保存加上这个
JSON.toJSONStringZ(jsonObject, SerializeConfig.getGlobalInstance(), SerializerFeature.QuoteFieldNames)
GitHub 加速计划 / fastj / fastjson
25.69 K
6.51 K
下载
FASTJSON 2.0.x has been released, faster and more secure, recommend you upgrade.
最近提交(Master分支:2 个月前 )
c942c834 - 1 年前
5bc4709b - 1 年前
更多推荐
已为社区贡献3条内容
所有评论(0)