Closed DazonWu closed 4 years ago
就是我查了一堆数据,然后根据文件名去重,我需要的是总是显示createdAt这个字段最新的数据
List
id, path, createdAt 1 a.txt 10:00 2 b.txt 9:00 3 a.txt 11:00 4 c.txt 13:00 5 d.txt 15:00
此时此刻 现有方案 可以
sort(list, "createdAt desc")
com.feilong.core.util.CollectionsUtil.groupOne(Iterable, String)
map values
com.feilong.core.util.CollectionsUtil.removeDuplicate(Collection, String...)
since 2.1.0 是你想要的
see #808
就是我查了一堆数据,然后根据文件名去重,我需要的是总是显示createdAt这个字段最新的数据
List
id, path, createdAt 1 a.txt 10:00 2 b.txt 9:00 3 a.txt 11:00 4 c.txt 13:00 5 d.txt 15:00
id, path, createdAt 1 a.txt 10:00 2 b.txt 9:00 3 a.txt 11:00 4 c.txt 13:00 5 d.txt 15:00