1hutool实战:DateUtil(时间工具类)-当前时间
程序员文章站
2022-07-05 20:36:32
...
技术活,该赏
关注+一键三连(点赞,评论,收藏)再看,养成好习惯
用途:获取当前时间
使用场景
当前时间,当前时间戳获取的多种方式
项目引用
此博文的依据:hutool-5.6.5版本源码
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-core</artifactId>
<version>5.6.5</version>
</dependency>
方法摘要
方法 | 描述 |
---|---|
cn.hutool.core.date.DateUtil.date() |
当前时间,转换为{@link DateTime}对象
|
cn.hutool.core.date.DateUtil.dateSecond() |
当前时间,转换为{@link DateTime}对象,忽略毫秒部分
|
cn.hutool.core.date.DateUtil.current() |
当前时间的时间戳
|
cn.hutool.core.date.DateUtil.currentSeconds() |
当前时间的时间戳(秒)
|
cn.hutool.core.date.DateUtil.now() |
当前时间,格式 yyyy-MM-dd HH:mm:ss
|
cn.hutool.core.date.DateUtil.today() |
当前日期,格式 yyyy-MM-dd
|
方法明细
方法名称:cn.hutool.core.date.DateUtil.date()
方法描述
当前时间,转换为{@link DateTime}对象
支持版本及以上
参数描述:
参数名 | 描述 |
---|
返回值:
当前时间
参考案例:
// 当前时间
Date date = DateUtil.date();
Assert.assertNotNull(date);
源码解析:
链接:待补充
方法明细
方法名称:cn.hutool.core.date.DateUtil.dateSecond()
方法描述
当前时间,转换为{@link DateTime}对象,忽略毫秒部分
支持版本及以上
4.6.2
参数描述:
参数名 | 描述 |
---|
返回值:
当前时间
参考案例:
//当前时间 忽略毫秒部分
Date date4 = DateUtil.dateSecond();
Assert.assertNotNull(date4);
源码解析:
链接:待补充
方法明细
方法名称:cn.hutool.core.date.DateUtil.current()
方法描述
当前时间的时间戳
支持版本及以上
参数描述:
参数名 | 描述 |
---|
返回值:
时间
参考案例:
long current = DateUtil.current();
String currentStr = String.valueOf(current);
Assert.assertEquals(13, currentStr.length());
long currentNano = DateUtil.current();
String currentNanoStr = String.valueOf(currentNano);
Assert.assertNotNull(currentNanoStr);
源码解析:
链接:待补充
方法明细
方法名称:cn.hutool.core.date.DateUtil.currentSeconds()
方法描述
当前时间的时间戳(秒)
支持版本及以上
4.0.0
参数描述:
参数名 | 描述 |
---|
返回值:
当前时间秒数
参考案例:
//当前时间的时间戳(秒)
long dateSeconds = DateUtil.currentSeconds();
System.out.println(dateSeconds);
Assert.assertNotNull(dateSeconds);
源码解析:
链接:待补充
方法明细
方法名称:cn.hutool.core.date.DateUtil.now()
方法描述
当前时间,格式 yyyy-MM-dd HH:mm:ss
支持版本及以上
参数描述:
参数名 | 描述 |
---|
返回值:
当前时间的标准形式字符串
参考案例:
// 当前日期字符串,格式:yyyy-MM-dd HH:mm:ss
String now = DateUtil.now();
Assert.assertNotNull(now);
源码解析:
链接:待补充
方法明细
方法名称:cn.hutool.core.date.DateUtil.today()
方法描述
当前日期,格式 yyyy-MM-dd
支持版本及以上
参数描述:
参数名 | 描述 |
---|
返回值:
当前日期的标准形式字符串
参考案例:
// 当前日期字符串,格式:yyyy-MM-dd
String today = DateUtil.today();
Assert.assertNotNull(today);
源码解析:
链接:待补充
上一篇: vs code颜色设置
下一篇: python接口自动化-连接数据库