java将数组按顺序分组_Java之JSONArray按照某个字段分组

数据

[

{

"id":"1",

"site_name":[

{

"navi1":"微博热搜",

"navi2":"热门微博"

}

],

"site_icon":"[https://s2.zimgs.cn/ims?kt=url&at=smstruct&key=aHR0cHM6Ly9waWMzNy5waG90b3Bob3RvLmNuLzIwMTUxMDI4LzAwMDUwMTgzMjkwMTE4MDJfYi5qcGc=&sign=yx:TKgi2RqCHVng2jHHHZXMpiaaa5w=&tv=400_400](https://s2.zimgs.cn/ims?kt=url&at=smstruct&key=aHR0cHM6Ly9waWMzNy5waG90b3Bob3RvLmNuLzIwMTUxMDI4LzAwMDUwMTgzMjkwMTE4MDJfYi5qcGc=&sign=yx:TKgi2RqCHVng2jHHHZXMpiaaa5w=&tv=400_400)",

"site_url":"[https://weibo.com/](https://weibo.com/)",

"site_type":"1"

},

{

"id":"2",

"site_name":[

{

"navi1":"虎嗅",

"navi2":"24客卿"

}

],

"site_icon":"[https://h5.sinaimg.cn/m/weibo-lite/img/pwalogo.417d1674.svg](https://h5.sinaimg.cn/m/weibo-lite/img/pwalogo.417d1674.svg)",

"site_url":"[https://m.weibo.cn/?jumpfrom=weibocom](https://m.weibo.cn/?jumpfrom=weibocom)",

"site_type":"1"

},

{

"id":"3",

"site_name":[

],

"site_icon":"[https://h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png](https://h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png)",

"site_url":"[https://m.weibo.cn/?jumpfrom=weibocom](https://m.weibo.cn/?jumpfrom=weibocom)",

"site_type":"2"

},

{

"id":"4",

"site_name":[

],

"site_icon":"[https://h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png](https://h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png)",

"site_url":"[https://m.weibo.cn/?jumpfrom=weibocom](https://m.weibo.cn/?jumpfrom=weibocom)",

"site_type":"3"

}

]

分组方法

Map> groupBySiteType = siteArr.stream()

.collect(Collectors.groupingBy(item -> JSON.parseObject(item.toString()).get("site_type")));

分组后

{"1": [{"site_name": [{"navi1": "微博热搜","navi2": "热门微博"}],"site_icon": "[https://s2.zimgs.cn/ims?kt=url&at=smstruct&key=aHR0cHM6Ly9waWMzNy5waG90b3Bob3RvLmNuLzIwMTUxMDI4LzAwMDUwMTgzMjkwMTE4MDJfYi5qcGc=&sign=yx:TKgi2RqCHVng2jHHHZXMpiaaa5w=&tv=400_400](https://s2.zimgs.cn/ims?kt=url&at=smstruct&key=aHR0cHM6Ly9waWMzNy5waG90b3Bob3RvLmNuLzIwMTUxMDI4LzAwMDUwMTgzMjkwMTE4MDJfYi5qcGc=&sign=yx:TKgi2RqCHVng2jHHHZXMpiaaa5w=&tv=400_400)","site_url": "[https://weibo.com/](https://weibo.com/)","site_type": "1","id": "1"},{"site_name": [{"navi1": "虎嗅","navi2": "24客卿"}],"site_icon": "[https://h5.sinaimg.cn/m/weibo-lite/img/pwalogo.417d1674.svg](https://h5.sinaimg.cn/m/weibo-lite/img/pwalogo.417d1674.svg)","site_url": "[https://m.weibo.cn/?jumpfrom=weibocom](https://m.weibo.cn/?jumpfrom=weibocom)","site_type": "1","id": "2"}],"2": [{"site_name": [],"site_icon": "[https://h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png](https://h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png)","site_url": "[https://m.weibo.cn/?jumpfrom=weibocom](https://m.weibo.cn/?jumpfrom=weibocom)","site_type": "2","id": "3"}],"3": [{"site_name": [],"site_icon": "[https://h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png](https://h5.sinaimg.cn/m/emoticon/icon/others/d_doge-be7f768d78.png)","site_url": "[https://m.weibo.cn/?jumpfrom=weibocom](https://m.weibo.cn/?jumpfrom=weibocom)","site_type": "3","id": "4"}]}}

为什么?

网上也找了很多的例子,但是大都是遍历或者明确知道JSONArray里面参数是什么对象类型的,对于这种不知道类型没见到有人记录怎么搞,故此记录,便于后人解惑!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值