DateUtil 日期转换

DateUtil

HuTool工具时间工具类DateUtil

依赖引入

<!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
<dependency>
    <groupId>cn.hutool</groupId>
    <artifactId>hutool-all</artifactId>
    <version>5.3.5</version>
</dependency>

获取现在

DateUtil.now();// yyyy-MM-dd HH:mm:ss
DateUtil.formatDate(new Date());//yyyy-MM-dd
//当前时间的时间戳
DateUtil.current(boolean isNano);
//true System.nanoTime()
//false System.currentTimeMillis()
//当前时间的时间戳(秒)
DateUtil.currentSeconds();

获取n分钟/小时

//获取前一分钟 后一分钟
DateUtil.offsetMinute(new Date(),-1);
DateUtil.offsetMinute(new Date(),1);
//获取前一小时 后一小时
DateUtil.offsetHour(new Date(),-1));
DateUtil.offsetHour(new Date(),1));

获取隔n天

//获取前一天 后一天
DateUtil.offsetDay(new Date(),-1);
DateUtil.offsetDay(new Date(),1);
// 获取前一个月 后一个月
DateUtil.offsetMonth(new Date(),-1);
DateUtil.offsetMonth(new Date(),1);
DateUtil.lastMonth();//上个月
DateUtil.nextMonth();//下个月
//获取前一个周 后一个周
DateUtil.offsetWeek(new Date(),-1));
DateUtil.offsetWeek(new Date(),1));
DateUtil.lastWeek()();//上一周
DateUtil.nextWeek();//下一周

Hutool官网api

上一篇:在使用DataGo同步csv文件到ck遇到的一些问题总结


下一篇:2021-09-22