时间类

1. Date转ZonedDateTime

ZonedDateTime.ofInstant(<Date类型的对象>.toInstant(), ZoneId.systemDefault());

2. ZoneDatedTime转Date

Date.from(<ZonedDateTime类型的对象>.toInstant());

3. 系统当前日期: ZoneDatedTime转Date --> 返回Date类型

Date.from(ZonedDateTime.now().truncatedTo(ChronoUnit.SECONDS).toInstant())

4. 系统当前时间:  ZoneDatedTime转String--> 返回String类型  hh:mm:ss

ZonedDateTime.now().truncatedTo(ChronoUnit.SECONDS).format(DateTimeFormatter.ISO_LOCAL_TIME)

5. 从ZoneDateTime中获取年、月、日、时、分、秒, 实际是转成了LocalDateTime,从LocalDateTime中获取

// 获取系统当前时间
ZonedDateTime zonedDateTimeNow = ZonedDateTime.now();
// 转LocalDateTime
LocalDateTime localDateTime = zonedDateTimeNow.toLocalDateTime();

// 从LocalDateTime中获取年月日时分秒
int year = localDateTime.get(ChronoField.YEAR);
int mon = localDateTime.get(ChronoField.MONTH_OF_YEAR);
int day = localDateTime.get(ChronoField.DAY_OF_MONTH);
int hour = localDateTime.get(ChronoField.HOUR_OF_DAY);
int min = localDateTime.get(ChronoField.MINUTE_OF_HOUR);
int sec = localDateTime.get(ChronoField.SECOND_OF_MINUTE);

// 字符串格式转换: 不足2位的补0, 如: 08时08分08秒
String h = String.format("%02d", hour);
String m = String.format("%02d", min);
String s = String.format("%02d", sec);

// 指定年月日时分秒,创建LocalDateTime
// LocalDateTime localDateTime = LocalDateTime.of(2020, 10, 1, 8, 28, 38);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值