有一个List<Date> ,现在有一个Date 时间,找到这个list 里面和时间最近的一个,进行返回

目录

  • [1 需求](#1 需求)
  • [2 实现](#2 实现)

1 需求

有一个List ,现在有一个Date 时间,找到这个list 里面和时间最近的一个,进行返回

2 实现

java 复制代码
public static Date findNearestDate(List<Date> dateList, Date targetDate) {
        Date nearestDate = null;
        DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        for (Date date : dateList) {
            long diff = Math.abs(targetDate.getTime() - date.getTime());
            if (nearestDate == null || diff < Math.abs(nearestDate.getTime() - targetDate.getTime())) {
                nearestDate = date;
            }
        }

        return nearestDate;
    }
相关推荐
iccb10136 分钟前
在线聊天系统中的多窗口数据同步技术解密
java·github
逸狼25 分钟前
【JavaEE进阶】MyBatis(5)-MyBatis-plus
java·开发语言
Aphelios3801 小时前
Java全栈面试宝典:线程协作与Spring Bean管理深度解析
java·开发语言·jvm·spring·面试·职场和发展
努力学习的小廉1 小时前
【C++11(中)】—— 我与C++的不解之缘(三十一)
android·java·c++
佬乔1 小时前
xml中配置AOP织入
java·服务器·前端
Eugene__Chen1 小时前
JavaWeb开发基础知识-XML和JSON
java·开发语言·前端
努力学习的小廉1 小时前
【C++11(上)】—— 我与C++的不解之缘(三十)
java·开发语言·c++
五行星辰2 小时前
Fastjson 处理 JSON 生成与解析指南
java·json
nlog3n2 小时前
Java观察者模式详解
java·开发语言·观察者模式
hello_ejb32 小时前
聊聊Spring AI的MilvusVectorStore
java·人工智能·spring