为什么 joda time 更新时间和偏移量而 java 时间不更新?

Why does joda time update the time and offset when java time doesn't?

我似乎无法弄清楚为什么 joda time 在夏令时之后更新时间和偏移小时数,但 java time 却没有。

    DateTime dateTime = new DateTime("2016-04-05T10:06:21.636-05:00").withDayOfWeek(5);

    TemporalField dayOfWeek = WeekFields.ISO.dayOfWeek();
    OffsetDateTime offsetDateTime = OffsetDateTime.parse("2016-04-05T10:06:21.636-05:00").with(dayOfWeek, 5);
    ZonedDateTime zonedDateTime = ZonedDateTime.parse("2016-04-05T10:06:21.636-05:00").with(dayOfWeek, 5);

    System.out.println("dateTime:         " + dateTime); // 2016-04-08T11:06:21.636-04:00
    System.out.println("offsetDateTime:   " + offsetDateTime); // 2016-04-08T10:06:21.636-05:00
    System.out.println("zonedDateTime:    " + zonedDateTime); // 2016-04-08T10:06:21.636-05:00

时区与时差

您没有提供时区,只提供了偏移日期时间和分区日期时间实例的偏移量。在这两种情况下,他们都不知道关于夏令时的任何线索,因为这是时区信息。

所以你必须在构造分区日期时间对象时提供一个时区,然后它才能如你所愿地工作。