Date和 LocalDateTime转换
时间: 2023-10-14 18:04:02 浏览: 111
Date和LocalDateTime之间的转换可以通过以下几种方式实现:
1. Date转LocalDateTime:
通过使用Date类的toInstant()方法将Date对象转换为Instant对象,然后使用Instant对象的atZone()方法将其转换为指定时区的ZonedDateTime对象,最后通过ZonedDateTime对象的toLocalDateTime()方法将其转换为LocalDateTime对象。
2. LocalDateTime转Date:
首先,使用LocalDateTime对象的atZone()方法将其转换为指定时区的ZonedDateTime对象,然后使用ZonedDateTime对象的toInstant()方法将其转换为Instant对象,最后通过Date.from()方法将Instant对象转换为Date对象。
3. 时间字符串转LocalDateTime:
使用DateTimeFormatter类的ofPattern()方法定义时间字符串的格式,然后使用LocalDateTime类的parse()方法将时间字符串转换为LocalDateTime对象。
4. LocalDateTime转时间字符串:
使用DateTimeFormatter类的ofPattern()方法定义时间字符串的格式,然后使用LocalDateTime对象的format()方法将其转换为指定格式的时间字符串。
5. Date转OffsetDateTime:
首先,使用Date对象的toInstant()方法将其转换为Instant对象,然后使用Instant对象的atOffset()方法将其转换为指定时区的OffsetDateTime对象。
6. OffsetDateTime转Date:
首先,使用OffsetDateTime对象的toInstant()方法将其转换为Instant对象,然后使用Date.from()方法将Instant对象转换为Date对象。
7. OffsetDateTime转LocalDateTime:
首先,使用OffsetDateTime对象的toLocalDateTime()方法将其转换为LocalDateTime对象。
8. 获取整点时间:
使用LocalDateTime对象的withMinute()方法将分钟数设置为0,然后使用withSecond()方法将秒数设置为0,从而获取整点时间。
9. LocalDateTime转时间戳(秒级):
使用LocalDateTime对象的toEpochSecond()方法将其转换为秒级的时间戳。
10. 时间戳转LocalDateTime:
使用Instant类的ofEpochSecond()方法将时间戳转换为Instant对象,然后使用atZone()方法将其转换为指定时区的ZonedDateTime对象,最后使用toLocalDateTime()方法将其转换为LocalDateTime对象。
以上是Date和LocalDateTime之间常见的转换方式,根据具体的需求选择适合的方法进行转换。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [Date和LocalDateTime的相互转换,字符串转LocalDateTime,求日期最晚时间、最早时间、获取整点时间、时间格式...](https://blog.csdn.net/qq_41070393/article/details/107883259)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
- *3* [使用Python语言和MySQL连接库进行MySQL表连接的示例代码](https://download.csdn.net/download/weixin_44609920/88222319)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文