Java中List排序简单实现
在实际项目中可能会遇到不相关的表查询结果拼装成一个并按时间倒序排序,然而这样的需求往往用sql不能方便的实现,就需要分别查询出来用List
返回,但是返回时需要排序。这时就需要用到List
的sort
通过实现Collections.sort的compare接口实现,可排序数字、时间,顺序、倒序
/**
* List倒序排序,add_time
* @param list
*/
public static void listMapSortByAddTime(List<Map> list) {
Collections.sort(list, new Comparator<Map>() {
@Override
public int compare(Map o1, Map o2) {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
Date dt1 = format.parse(o1.get("add_time")+"");
Date dt2 = format.parse(o2.get("add_time")+"");
if (dt1.getTime() > dt2.getTime()) {
return -1;
} else if (dt1.getTime() < dt2.getTime()) {
return 1;
} else {
return 0;
}
} catch (Exception e) {
e.printStackTrace();
}
return 0;
}
});
}
在需要排序的地方调用
Util.listMapSortByAddTime(lists);
排序前
排序后
如果排序的是对象,则把传入参数Map改成对象,List<Map> list
如果要排序其他类型,则把if (dt1.getTime() > dt2.getTime())
判断改下即可
如果要顺序排列,则return -1
改成return 1
,return 1
改成return -1