gpt4 book ai didi

java - 使用偏移量将一个时区中的日期时间字符串转换为另一个时区

转载 作者:搜寻专家 更新时间:2023-10-31 08:10:44 24 4
gpt4 key购买 nike

我有一个日期时间字符串“2018-01-15 01:16:00”,它位于 EST 时区。我想使用 UTC 偏移将其动态转换为另一个时区。我的 javascript 代码将此 UTC 偏移量作为参数传递,并且 servlet 必须将此日期时间字符串转换/格式化为由提供的偏移量标识的时区。

我尝试了很多方法,包括 oracle tutorials 中记录的方法但无法得出解决方案。

下面是我正在尝试的代码,非常感谢任何帮助。

private static final String DATE_FORMAT = "yyyy-MM-dd HH:mm:ss";
private static final String DEFAULT_TIME_ZONE = ZoneId.SHORT_IDS.get("EST");

public static void main(String[] args) throws Exception {
String dateTime = "2018-01-15 02:35:00";
//parse the datetime using LocalDateTime
LocalDateTime defaultDateTime = LocalDateTime.parse(dateTime, DateTimeFormatter.ofPattern(DATE_FORMAT));

//get the datetime in default timezone
ZoneId defaultZoneId = ZoneId.of(DEFAULT_TIME_ZONE);
ZonedDateTime defaultZoneDateTime = defaultDateTime.atZone(defaultZoneId);
System.out.println("EST time: "+defaultZoneDateTime.format(DateTimeFormatter.ofPattern(DATE_FORMAT)));
ZonedDateTime utcZonedDateTime = defaultZoneDateTime.withZoneSameInstant(ZoneId.of("UTC"));
String utcTime = defaultZoneDateTime.withZoneSameInstant(ZoneId.of("UTC")).format(DateTimeFormatter.ofPattern(DATE_FORMAT));
System.out.println("UTC : "+utcTime);

//IST timezone
ZoneOffset offset = ZoneOffset.of("+05:30");
OffsetDateTime offsetDate = OffsetDateTime.of(utcZonedDateTime.toLocalDateTime(), offset);
String targetTimeZone = offsetDate.format(DateTimeFormatter.ofPattern(DATE_FORMAT));
System.out.printf("target time : "+targetTimeZone);

}

输出

EST time: 2018-01-15 02:35:00
UTC : 2018-01-15 07:37:00
target time : 2018-01-15 07:37:00

预计目标时间:2018-01-15 13:05:00

最佳答案

直接的问题是这一行:

OffsetDateTime offsetDate = OffsetDateTime.of(utcZonedDateTime.toLocalDateTime(), offset);

这就是说您想要相同的本地 日期/时间,但具有指定的偏移量。这改变了表示哪个瞬间。

相反,您确实希望在时间上表示相同的瞬间,但以特定的偏移量表示。所以最短的修复是:

OffsetDateTime offsetDate = utcZonedDateTime.toInstant().atOffset(offset);

但是,还有许多其他方面可以改变:

  • 更喜欢 ZoneOffset.UTC 而不是 ZoneId.of("UTC")
  • EST 用作时区会造成混淆 - 不清楚您希望它指的是“东部时间”(在 EST 和 EDT 之间变化)还是 UTC-5 的纯标准时间。假设您实际上是指“东部时间”,最好使用 America/New_York 作为区域 ID。
  • 如果输入字符串在东部时间代表一个被跳过的或不明确的值,则不清楚您想要发生什么。这些发生在 DST 转换前后。

接下来,您根本不需要将东部时间的ZonedDateTime 转换为UTC 时间的ZonedDateTime。直接将其转换为即时:

OffsetDateTime target = defaultZoneDateTime.toInstant().at(offset);

或者为目标创建一个 ZonedDateTime:

ZonedDateTime target = defaultZoneDateTime.withZoneSameInstant(offset);

考虑到偏移量不是真正的时区,我可能会选择第一个。

关于java - 使用偏移量将一个时区中的日期时间字符串转换为另一个时区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48258563/

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