时间:2021-05-19
取List集合中最大的日期, 可以用Date max = Collections.max(dateList);, 传入一个日期集合, 就可以获取, 工作中有这个需求, 就查找到这个,
代码如下
} else { /** 获取此专题下的所有内容的最新时间 */Long featureId = this.communityFeatureMapper.selectFeatureIdByLabelId(labelId);List<CommunityFeatureRelation> communityFeatureRelationList = this.communityFeatureRelationMapper.selectByFeatureId(featureId);List<Date> dateList = Lists.newArrayList();for (CommunityFeatureRelation communityFeatureRelation : communityFeatureRelationList) { CommunityProduct communityProduct =this.communityProductMapper.selectContentIdByProductIdAndType(communityFeatureRelation.getProductId(),BaseConstans.ARTICLE_YIFABU); CommunityArticle communityArticle = this.communityArticleMapper.selectByPrimaryKey(communityProduct.getContentId()); dateList.add(communityArticle.getReleaseTime()); }if (!CollectionUtils.isEmpty(dateList)) { Date max = Collections.max(dateList); /** 内容->添加专题-此专题下的合伙人getReleaseTime 更新, 若此专题下不存在合伙人, 则不更新 */ Long productId = this.communityProductMapper.selectIdByContentIdAndType(featureId, BaseConstans.FOUR); CommunityPartner communityPartner = this.communityPartnerMapper.selectByPartnerId(productId); if (!StringUtils.isEmpty(communityPartner)) { communityPartner.setCreateTime(max); communityPartnerMapper.updateByPrimaryKeySelective(communityPartner); }} CommunityProduct communityProduct = this.communityProductMapper.selectContentIdByProductIdAndType(prodId, proType);补充知识:java自定义List中的sort()排序方法,用于日期排序
1、问题描述
List是java中一个有序可重复的的集合,其中自带的.sort()排序方法,该方法在针对纯数字类型List集合排序的时候很有效。但是对于装入其他类型的List集合,自带的sort()方法排序我们很难控制,比如一个日期集合的排序。
2、解决方法:
java中List允许我们自定义sort()排序方法,以下自定义了List集合的sort排序方法,用于对一个字符串类型的日期集合进行排序。
//待排序的集合List<String> list=new ArrayList<String>();list.add("2019-06");list.add("2019-11");list.add("2019-02");list.add("2019-09");list.add("2019-05");//自定义list排序,集合数据(月份)按升序排序;final SimpleDateFormat sdft = new SimpleDateFormat("yyyy-MM");Collections.sort(list, new Comparator<String>(){ @Override public int compare(String month1, String month2) { int mark = 1; try { Date date1 = sdft.parse(month1); Date date2 = sdft.parse(month2); if(date1.getTime() < date2.getTime()){ mark = -1;//调整顺序,-1为不需要调整顺序; } if(month1.equals(month2)){ mark = 0; } } catch (ParseException e) { LOG.error("日期转换异常", e); e.printStackTrace(); } return mark; } //compare});3、其他
另外java两个日期类型的对象也可以用如下方法进行比较。
Date() date1=new Date();Date() date2=new SimpleDateFormat("yyyy-MM-dd").parse("2019-06-11");Boolean flag;if(date1.before(date2)){ flag=true;}a.before(b);该方法是判断a日期是否小于b日期,返回的是一个布尔类型结果。以上这篇在java中获取List集合中最大的日期时间操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在C#的List集合操作过程中,如果要获取List集合中的第一个元素对象,则一般会先通过获取到list[0]这种方式来获取第一个元素。其实在List集合中提供了
在C#的List集合操作中,有时候需要查找到List集合中的最大值,此时可以使用List集合的扩展方法Max方法,Max方法有2种形式,一种是不带任何参数的形式
Java日期和时间类简介Java的日期和时间类位于java.util包中。利用日期时间类提供的方法,可以获取当前的日期和时间,创建日期和时间参数,计算和比较时间
java中List、Array、Map、Set等集合相互转换在java中,我们经常需要对List、Array等做一些转换操作,当然转换方法有很多种,但哪种方法既
在Java中,我们可以对List集合进行如下几种方式的遍历:Listlist=newArrayList();list.add(5);list.add(23);l