java compare 时间排序
Posted 咸蛋超人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java compare 时间排序相关的知识,希望对你有一定的参考价值。
所有数据存进resultList中
Collections.sort(resultList, new Comparator<HashMap<String, Object>>() {
@Override
public int compare(HashMap<String, Object> o1, HashMap<String, Object> o2) {
Date time1 = (Date) o1.get("submitTime");
Date time2 = (Date) o2.get("submitTime");
if (null == time1) {
return 1;
}
if (null == time2) {
return -1;
}
return time2.compareTo(time1); //按时间正序 倒叙是 time1.compareTo(time2);
}
});
以上是关于java compare 时间排序的主要内容,如果未能解决你的问题,请参考以下文章
为啥 Comparator 应该实现 Serializable?