使用offset将一个时区中的datetime字符串转换为另一个时区

时间:2018-01-15 07:27:34

标签: java datetime java-8 timezone-offset

我有一个日期时间字符串“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

2 个答案:

答案 0 :(得分:13)

直接问题是这一行:

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

这就是说你想要相同的本地日期/时间,但是要有指定的偏移量。这会改变哪个时刻表现出来。

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

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

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

  • 首选ZoneOffset.UTCZoneId.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);

鉴于偏移不是真正时区,我可能会选择其中的第一个。

答案 1 :(得分:5)

您正在使用

OffsetDateTime.of(utcZonedDateTime.toLocalDateTime(), offset)

创建目标。因此,您在目标偏移量中构造一个OffsetDateTime,其LocalDateTime等于UTC区域中的LocalDateTime。

您想要的是与您从EST时间到UTC时使用的完全相同的转换:保持相同的瞬间,但转到不同的时区:

defaultZoneDateTime.withZoneSameInstant(offset);

或者,如果你真的想要一个OffsetDateTime而不是ZonedDateTime:

OffsetDateTime.ofInstant(defaultZoneDateTime.toInstant(), offset);