utils001_获取零点时间

本文介绍了如何在Java中通过Date类、Hutool库和SimpleDateFormat类获取日期的零点时间。提供了三种不同的实现方式,包括使用Date类的构造函数、Hutool库的DateUtil.beginOfDay()方法以及SimpleDateFormat解析日期字符串的方法。示例代码详细展示了每种方法的用法。
摘要由CSDN通过智能技术生成
package com.jingsong.test;

import cn.hutool.core.date.DateUtil;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * @author jingsong
 * @date 2022/4/19 23:08
 **/

public class TimeTest {
    public static void main(String[] args) throws ParseException {
        // 3种方法获取某天的零点时间
        Date date = new Date();
        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS");

        // 1. Date类,无需导包,操作方便
        Date date1 = method1(date);
        System.out.println("date1 = " + format.format(date1));

        // 2. hutool
        Date date2 = method2(date);
        System.out.println("date2 = " + format.format(date2));

        // 3. SimpleDateFormat类,思想同1
        Date date3 = method3(date);
        System.out.println("date3 = " + format.format(date3));


    }

    /*
        抄自 http://t.csdn.cn/tQCW3
     */
    private static Date method3(Date date) throws ParseException {
        SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd");
        String zeroDateStr = format.format(date);
        return format.parse(zeroDateStr);
    }


    /*
        hutool工具包 强烈推荐,可以获得各个时间段的边界时间等等
            DateUtil.beginOfWeek(date);
            DateUtil.beginOfMonth(date);
            DateUtil.endOfYear(date);
        https://mvnrepository.com/artifact/cn.hutool/hutool-all
     */
    private static Date method2(Date date) {
        long time = DateUtil.beginOfDay(date).getTime();
        return new Date(time);
    }

    /*
        需要注意时区,最好先试试再使用
     */
    private static Date method1(Date date) {
        return new Date(date.getYear(), date.getMonth(), date.getDate());
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值