fastjson把map转成json字符串按字母大小排序
Posted 宇翊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fastjson把map转成json字符串按字母大小排序相关的知识,希望对你有一定的参考价值。
public static void main(String[] args) { HashMap<String, Object> map=new HashMap<String, Object>(); map.put("sign_status", "UNBIND"); map.put("sign_type", "RSB"); map.put("user_id", "2088622919786204"); map.put("gmt_time", "20191023142225"); System.out.println(JSON.toJSONString(map,SerializerFeature.MapSortField)); }
以上是关于fastjson把map转成json字符串按字母大小排序的主要内容,如果未能解决你的问题,请参考以下文章