Date与LocalDateTime互相转换
Date
和LocalDateTime
之间的互相转换需要借助Instant
,Instant
是时间线上的一个瞬时点,不包含时区信息
一、Date转LocalDateTime
转换顺序:
Date
转为Instant
Instant
转为LocalDateTime
或者LocalDate
1 |
|
二、LocalDateTime转Date
转换顺序:
LocleDateTie
转为Instant
Instant
转为Date
1 |
|
Instant
转换的时候指定目标时区信息方式:
ZoneId.ofOffset("UTC", ZoneOffset.ofHours(5))
基于UTC
进行小时偏移ZoneId.ofOffset("UTC", ZoneOffset.ofHoursMinutes(6, 5))
基于UTC
进行小时和分钟偏移ZoneId.systemDefault()
基于当前所在系统进行偏移ZoneOffset.of("+8")
直接指定偏移,支持+
和-
时间前后偏移
Date与LocalDateTime互相转换
https://probiecoder.cn/java/date_localdatetime.html