gpt4 book ai didi

java - 将字符串转换为 ZonedDateTime

转载 作者:行者123 更新时间:2023-12-02 02:12:50 27 4
gpt4 key购买 nike

我尝试将字符串转换为 ZonedDateTime。这是我的代码:

String startTime = "Wed Mar 21 2018 08:00:00 GMT 0330 (IRST)";
String endTime = "Fri Mar 23 2018 08:00:00 GMT 0430 (IRDT)";
ZonedDateTime startTimeDate = ZonedDateTime.parse(startTime);
ZonedDateTime endTimeDate = ZonedDateTime.parse(endTime);

和错误:

java.time.format.DateTimeParseException: Text 'Wed Mar 21 2018 08:00:00 GMT 0330 (IRST)' could not be parsed at index 0

最佳答案

您正在使用 parse method 的默认版本,它的默认格式化程序为 2007-12-03T10:15:30+01:00[Europe/Paris]

您需要传递正确的DateTimeFormatter 。对我来说RFC_1123_DATE_TIME似乎最接近您的格式,但它不匹配,因此您需要创建自己的格式。

关于java - 将字符串转换为 ZonedDateTime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49716262/

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