gpt4 book ai didi

java - UTC 字符串日期到本地日期

转载 作者:行者123 更新时间:2023-12-03 15:22:26 26 4
gpt4 key购买 nike

嗨,我从第三方 REST 服务中获得日期,字符串形式为 2014-10-14 03:05:39这是UTC格式。如何将此日期转换为本地格式?

最佳答案

您可以使用 LocalDate (Java 1.8) 和函数 LocalDateTime.parse

此函数将根据字符序列(您的日期)和 DateTimeFormatter 返回一个 LocalDateTime 对象。

来自 Java 1.8 API:

public static LocalDateTime parse(CharSequence text,
DateTimeFormatter formatter)

Obtains an instance of LocalDateTime from a text string using a specific formatter.
The text is parsed using the formatter, returning a date-time.

Parameters:
text - the text to parse, not null
formatter - the formatter to use, not null
Returns:
the parsed local date-time, not null
Throws:
DateTimeParseException - if the text cannot be parsed

关于java - UTC 字符串日期到本地日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26409453/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com