Java根据年度将数据分组
2020-12-13 05:26
标签:tcl mamicode ash The null har info char text 现在有这么一组数据 我想在Java后台将数据按year分组该怎么做呢 首先数据一定是根据year排序好的 最后返到前台的数据格式是这样的 原理就是year每换一次map就往里put一组year和list 想要获得这样的数据需要最外层循环根据不重复year的个数来循环 内层再根据year来判断将什么数据放到list中 最后将year和list装在dataMap里 当year不相同的时候往dataMap中put一组数据 这就是Java后台根据年度分组的详细过程,可能还有别的更好地办法,欢迎一起讨论 Java根据年度将数据分组 标签:tcl mamicode ash The null har info char text 原文地址:https://www.cnblogs.com/zouwangblog/p/11140957.html
code
name
year
45615654
x1
2018-2019
78912648
x2
2018-2019
42364322
x3
2017-2018
87635225
x4
2016-2017
chargeList: [
{
year: 2018-2019,
list: [
{
code: 45615654,
name: "x1"
},
{
code: 78912648,
name: "x2"
},
]
}
]
第一种实现
List
第二种实现
List