码迷,mamicode.com
首页 > 编程语言 > 详细

java compare 时间排序

时间:2017-10-11 18:11:57      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:tor   get   ide   时间   数据   pareto   res   null   public   

 

所有数据存进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 时间排序

标签:tor   get   ide   时间   数据   pareto   res   null   public   

原文地址:http://www.cnblogs.com/xdcr/p/7651672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!