//对JSON数据按照英文字母升序排序
JSONObject jsonObject = JSONObject.parseObject(data);
Map<String, Object> map = jsonObject.getInnerMap();
Map<String, Object> sortedMap = new TreeMap<>(map);
JSONObject sortedJsonObject = new JSONObject(sortedMap);
logger.info("排序后报文: [" + sortedJsonObject.toString() + "]");
JAVA用TreeMap实现JSON按字母升序排序
喝着咖啡敲代码2024-07-27 15:30
相关推荐
极客代码1 分钟前
【Python TensorFlow】入门到精通疯一样的码农8 分钟前
Python 正则表达式(RegEx)代码之光_19809 分钟前
保障性住房管理:SpringBoot技术优势分析ajsbxi14 分钟前
苍穹外卖学习记录&岁月不待人&30 分钟前
Kotlin by lazy和lateinit的使用及区别StayInLove33 分钟前
G1垃圾回收器日志详解对许37 分钟前
SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder“无尽的大道41 分钟前
Java字符串深度解析:String的实现、常量池与性能优化爱吃生蚝的于勒44 分钟前
深入学习指针(5)!!!!!!!!!!!!!!!丁总学Java1 小时前
微信小程序,点击bindtap事件后,没有跳转到详情页,有可能是app.json中没有正确配置页面路径