标签: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; }
标签:pre div 排序 根据 color string static ret json
原文地址:https://www.cnblogs.com/yongguang1990/p/10249190.html