欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JAVA LocalDate转Date Date获取某一天的最小时间和最大时间

程序员文章站 2022-03-04 12:09:09
...

一.JAVA LocalDate转Date

1.1JAVA LocalDate转Date

 /**
     * localDate -> Date
     *
     * @param localDate 某一天时间
     * @return Date
     */
    private Date localDate2Date(LocalDate localDate) {
        if (null == localDate) {
            return null;
        }
        ZonedDateTime zonedDateTime = localDate.atStartOfDay(ZoneId.systemDefault());
        //这里返回的其实是这一天的开始时间 如 2020-02-17 00:00:00
        return Date.from(zonedDateTime.toInstant());
    }

1.2验证1.1中转换后是某一天的最小时间

   public static void main(String[] args) {
        LocalDate now = LocalDate.now();
        System.out.println(now);
        ZonedDateTime zonedDateTime = now.atStartOfDay(ZoneId.systemDefault());
        Date from = Date.from(zonedDateTime.toInstant());
        System.out.println(from);
    }

控制台打印如下:
2021-09-15
Wed Sep 15 00:00:00 CST 2021
Process finished with exit code 0


二.Date获取某一天的最小时间和最大时间

2.1获得某天最小时间 如 2020-02-17 00:00:00

 /**
     * 获得某天最小时间 如 2020-02-17 00:00:00
     *
     * @param date 某一天时间
     * @return 某天最小时间
     */
    private Date getStartOfDay(Date date) {
        if (null == date) {
            return null;
        }
        LocalDateTime localDateTime = LocalDateTime.ofInstant(Instant.ofEpochMilli(date.getTime()), ZoneId.systemDefault());
        LocalDateTime startOfDay = localDateTime.with(LocalTime.MIN);
        return Date.from(startOfDay.atZone(ZoneId.systemDefault()).toInstant());
    }

2.2获得某天最小时间 如 2020-02-19 23:59:59

/**
     * 获得某天最大时间 如2020-02-19 23:59:59
     *
     * @param date 某一天时间
     * @return 某天最大时间
     */
    private Date getEndOfDay(Date date) {
        if (null == date) {
            return null;
        }
        LocalDateTime localDateTime = LocalDateTime.ofInstant(Instant.ofEpochMilli(date.getTime()), ZoneId.systemDefault());
        LocalDateTime endOfDay = localDateTime.with(LocalTime.MAX);
        return Date.from(endOfDay.atZone(ZoneId.systemDefault()).toInstant());
    }