将集合中的内容按时间排序
Posted lirenzhujiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将集合中的内容按时间排序相关的知识,希望对你有一定的参考价值。
/**
* 将集合中的内容按时间排序
* @param list
*/
private static void ListSort(List<BossMsgInfo> list) {
Collections.sort(list, new Comparator<BossMsgInfo>() {
public int compare(BossMsgInfo o1, BossMsgInfo o2) {
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
Date dt1 = format.parse(o1.getSenddate());
Date dt2 = format.parse(o2.getSenddate());
if (dt1.getTime() > dt2.getTime()) {
return 1;
} else if (dt1.getTime() < dt2.getTime()) {
return -1;
} else {
return 0;
}
} catch (Exception e) {
logger.error(e, "时间排序查询异常");
e.printStackTrace();
}
return 0;
}
});
}
以上是关于将集合中的内容按时间排序的主要内容,如果未能解决你的问题,请参考以下文章
如何按创建日期而不是名称对 Cloud Firestore 集合中的文档进行排序?