码迷,mamicode.com
首页 > 编程语言 > 详细

JSONArray排序

时间:2019-01-10 13:06:33      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:pre   div   排序   根据   color   string   static   ret   json   

JSONArray根据某个key进行排序,注意key的类型。

 private static JSONArray sortProxyAndCdn(JSONArray bindArrayResult) {
        System.out.println("排序前:"+bindArrayResult);
        bindArrayResult.sort(Comparator.comparing(obj -> ((JSONObject) obj).getString("cdn").length()).reversed());
      System.out.println("排序后:" + bindArrayResult);
      return bindArrayResult;
    }

 

JSONArray排序

标签:pre   div   排序   根据   color   string   static   ret   json   

原文地址:https://www.cnblogs.com/yongguang1990/p/10249190.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!