JodaTime - how can I know whether a daylight saving occurs within a specified period of time?

前端 未结 3 576
感情败类
感情败类 2021-01-13 23:35

I need to know whether the period defined by:

DateTime start;
DateTime end;

has a DST inside.

I am iterating over collection of per

相关标签:
3条回答
  • 2021-01-13 23:56

    Because Daylight Savings Time is heavily reliant on TimeZones (some areas don't practice DST, some move clocks 1 hour, some 2 etc) your time variables are going to have to account for location as well.

    As such, you might have to have a look at the DateTimeZone class

    DateTimeZone

    0 讨论(0)
  • 2021-01-14 00:05

    Use the DateTimeZone.nextTransition method. If the start is less than the end DateTime, then at least one time zone transition has occurred in between. This does not account for rule changes vs. DST. That is, a time zone might have a new rule indicating that standard time has a new offset, and this would appear as a time zone transition.

    if (start.getZone().nextTransition(start.getMillis()) < end.getMillis()) {
        // Time zone transition occurred, possibly due to DST
        ...
    }
    
    0 讨论(0)
  • 2021-01-14 00:16

    As long as start and end are in the correct time zone (e.g., created using this constructor) then the Interval created using them should take DST for that time zone into account. If the Duration of that Interval is not equal to 24 hours, then you've crossed the DST point.

    0 讨论(0)
提交回复
热议问题