Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I realize that you can check if a Date is inDaylightTime, but how can I determine when (or if) that Date switches to and from DST? I can iterate over every day and check if it's inDaylightTime, but is there a cleaner solution/method?

share|improve this question

1 Answer

up vote 2 down vote accepted

I would suggest using Joda Time - its DateTimeZone class has nextTransition and previousTransition methods.

Note that transitions can occur for reasons other than DST - a change in standard time, or perhaps a change in the name of the zone interval. But that's how you'd find out, anyway :)

(Joda Time is a much better date and time library to start with, to be honest.)

share|improve this answer
+1 and I would love to use a different library, but I should have mentioned I'm working with legacy code and have to use the Java Date and DateTime :-\ – GrailsGuy Nov 8 '11 at 16:26
@GrailsDev: Even if you're not going to use Joda Time elsewhere, can you not introduce it even for this bit? (I can't see anything which will give you transitions in the Java standard classes, even for SimpleTimeZone.) – Jon Skeet Nov 8 '11 at 16:27
I suppose I can... was wondering more if it's possible in the default Java class. – GrailsGuy Nov 8 '11 at 16:29
1  
@GrailsDev: Not that I can see. Joda Time makes it pretty easy to convert from a Java Date though. Maybe you can introduce it throughout the project by stealth ;) – Jon Skeet Nov 8 '11 at 16:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.