Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I run the following program, which parses two date strings referencing times one second apart and compares them:

public static void main(String[] args) throws ParseException {
    SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
    String str3 = "1927-12-31 23:54:07";  
    String str4 = "1927-12-31 23:54:08";  
    Date sDt3 = sf.parse(str3);  
    Date sDt4 = sf.parse(str4);  
    long ld3 = sDt3.getTime() /1000;  
    long ld4 = sDt4.getTime() /1000; 
    System.out.println(ld3);  
    System.out.println(ld4);  
    System.out.println(ld4-ld3);
}

The output is:

-1325491905
-1325491552
353

Why is ld4-ld3 not 1 (as I would expect from the one-second difference in the times), but 353?

If I change the dates to times one second later:

String str3 = "1927-12-31 23:54:08";  
String str4 = "1927-12-31 23:54:09";  

Then ld4-ld3 will be 1


UPDATE

Java version:

java version "1.6.0_22"
Java(TM) SE Runtime Environment (build 1.6.0_22-b04)
Dynamic Code Evolution Client VM (build 0.2-b02-internal, 19.0-b04-internal, mixed mode)

Timezone(TimeZone.getDefault()):

sun.util.calendar.ZoneInfo[id="Asia/Shanghai",
offset=28800000,dstSavings=0,
useDaylight=false,
transitions=19,
lastRule=null]

Locale(Locale.getDefault()): zh_CN
share|improve this question
18  
What locale are you running this in? It may be related to some daylight saving issue. – Joachim Sauer Jul 27 '11 at 8:21
340  
Did you really stumble upon that exact situation in a real-life scenario or was this question only meant to be a puzzler -- just for the fun of it ? – Costi Ciudatu Jul 27 '11 at 8:42
51  
@Costi Ciudatu: FWIW, I could easily imagine this coming up as the result of reducing a larger bug -- i.e., "Why are these two dates a year apart not exactly a year apart?" – Brooks Moses Jul 30 '11 at 1:43
301  
LOL, everybody reading this is not interested in the weird date behaviour. They're all interested in Jon Skeet's answer with over 1k upvotes :) – Mosty Mostacho Mar 22 '12 at 4:59
22  
originally posted as Oracle Bug ID 7070044 on Jul 23 `11 – Arno Aug 4 '12 at 10:55
show 14 more comments

6 Answers

up vote 3582 down vote accepted
+100

It's a time zone change on December 31st in Shanghai.

See this page for details of 1927 in Shanghai. Basically at midnight at the end of 1927, the clocks went back 5 minutes and 52 seconds. So "1927-12-31 23:54:08" actually happened twice, and it looks like Java is parsing it as the later possible instant for that local date/time - hence the difference.

Just another episode in the often weird and wonderful world of time zones.

EDIT: Stop press! History changes...

The original question would no longer demonstrate quite the same behaviour, if rebuilt with version 2013a of TZDB. In 2013a, the result would be 358 seconds, with a transition time of 23:54:03 instead of 23:54:08.

I only noticed this because I'm collecting questions like this in Noda Time, in the form of unit tests... The test has now been changed, but it just goes to show - not even historical data is safe.

EDIT: To answer Ken Kin's question around a transition at 1900... it looks like the Java time zone implementation treats all time zones as simply being in their standard time for any instant before the start of 1900 UTC:

import java.util.TimeZone;

public class Test {
    public static void main(String[] args) throws Exception {
        long startOf1900Utc = -2208988800000L;
        for (String id : TimeZone.getAvailableIDs()) {
            TimeZone zone = TimeZone.getTimeZone(id);
            if (zone.getRawOffset() != zone.getOffset(startOf1900Utc - 1)) {
                System.out.println(id);
            }
        }
    }
}

The code above produces no output on my Windows machine. So any time zone which has any offset other than its standard one at the start of 1900 will count that as a transition. TZDB itself has some data going back earlier than that, and doesn't rely on any idea of a "fixed" standard time (which is what getRawOffset assumes to be a valid concept) so other libraries needn't introduce this artificial transition.

share|improve this answer
1783  
please tell me you didn't know that off the top of your head? – Gareth Davis Jul 27 '11 at 8:33
298  
@Gareth: Nope, but checking the details of Shanghai time zone transitions at that period was my first port of call. And I've been working on time zone transitions for Noda Time recently, so the possibility of ambiguity is pretty much at the forefront of my thoughts anyway... – Jon Skeet Jul 27 '11 at 8:35
122  
@Charles: back then, travellers knew to expect local time to be different everywhere (because it was). Additionally, watches were mechanical and drifted quickly, so people we used to adjusting them according to the local clocktower every couple of days anyway, even if they did not travel. So how were the tower clocks (which also drifted) set? Most easily by setting them to 12:00 when the sun reached its daily peak... which was different in every place not on the same longitude. This was the norm pretty much everywhere until railroad timetables required some sort of standardization. – Michael Borgwardt Jul 28 '11 at 12:58
134  
But then : how on Earth has this kind of knowledge survived the ages, so that nearly a century ago, it is implemented in software ? In 2011, anyone who mention timezone oddities to a non-software engineer is looked upon like a nerd. (And really, people expect all software to abstract it, and they don't give a damn if it's ambigous, when they say 'noon', we software engineer should deal with it). But to imagine someone in Shangai, in December 1927, thinking it would be relevant to note such a thing down, and that somehow this information was never lost, deleted, anything ... mind's blown. – phtrivier Jul 30 '11 at 16:28
220  
What's ridiculous about this awesome answer is that it only took you 16 minutes to figure it out. – Ed S. Mar 29 '12 at 1:05
show 59 more comments

You've encountered a local time discontinuity:

When local standard time was about to reach Sunday, 1. January 1928, 00:00:00 clocks were turned backward 0:05:52 hours to Saturday, 31. December 1927, 23:54:08 local standard time instead

This is not particularly strange and has happened pretty much everywhere at one time or another as timezones were switched or changed due to political or administrative actions.

share|improve this answer
96  
It is amazing that the libraries take account of all these discontinuities. Is there a single (and simple) place where these are all documented for bedtime reading, apart from in the source code? – Jason Jul 30 '11 at 19:14
4  
@Jason: Just follow the link I provided. – Michael Borgwardt Jul 30 '11 at 21:59
10  
@Jason: For the bedtime reading, I'd suggest the (now) IANA timezone database (previously administered by a lovely guy named Olson, I think) would be a great resource: iana.org/time-zones. As far as I know, a majority of the open source world (thus mentioned libraries) use this as their primary source of timezone data. – Sune Rasmussen Mar 11 '12 at 21:25
9  
+1 for your comment in Skeet's answer explaining local time offsets and railroad time. I would give you another +1 for getting 332 upvotes in the same question as a Skeet answer, but I can't. – Sogger Aug 20 '12 at 20:57
How about leap seconds? AFAIK continuity is not a given even when using UTC. – user1050755 Mar 7 at 0:47

The moral of this strangeness is:

  • Use dates and times in UTC wherever possible.
  • If you can not display a date or time in UTC, always indicate the time-zone.
  • If you can not require an input date/time in UTC, require an explicitly indicated time-zone.
share|improve this answer
23  
Conversion/storage into UTC really wouldn't help for the problem described as you would encounter the discontinuity in the conversion to UTC. – Mark Mann Jul 30 '11 at 4:28
2  
@Mark Mann: if your program uses UTC internally everywhere, converting to/from a local time-zone only in the UI, you would not care about such discontinuities. – Raedwald Aug 26 '11 at 11:50
11  
@Raedwald: Sure you would - What is the UTC time for 1927-12-31 23:54:08? (Ignoring, for the moment, that UTC didn't even exist in 1927). At some point this time and date are coming into your system, and you have to decide what to do with it. Telling the user they have to input time in UTC just moves the problem to the user, it doesn't eliminate it. – Nick Bastin Feb 19 '12 at 22:39
4  
I feel vindicated at the amount of activity on this thread, having been working on date/time refactoring of a large app for almost a year now. If you're doing something like calendaring, you can't "simply" store UTC, as the definitions of time zones in which it may be rendered will change over time. We store "user intent time" - the user's local time and their time zone - and UTC for searching and sorting, and whenever the IANA database is updated, we recalculate all the UTC times. – taiganaut Dec 7 '12 at 22:34
1  
@taiganaut Yes, for some applications the "local time of day" is constant over multiple items. I have to deal with exactly that kind of difficulty at my current job. But I stand by my answer: "Use dates and times in UTC wherever possible". – Raedwald Dec 10 '12 at 12:45
show 7 more comments

I ran your code, the output is:

-1325466353
-1325466352
1

And:

-1325466352
-1325466351
1

on:

$ java -version
java version "1.6.0_20"
OpenJDK Runtime Environment (IcedTea6 1.9.7) (fedora-52.1.9.7.fc14-i386)
OpenJDK Client VM (build 19.0-b09, mixed mode)
share|improve this answer
66  
Did you try it in the Shanghai time zone? :) (I realize the time zone was only specified after you wrote your answer.) – Jon Skeet Jul 27 '11 at 8:33
in bash, do: >>export TZ="Asia/Shanghai"<< before running the program. Unfortunately, the timezone handling in Java is, well, NOT SO OBVIOUS. And don't even think of JDBC timestamps... the first thing I always do is to create a static initializer that checks if the default timezone and default locale are set to UTC/English.US in every server application. Some database apps don't store timezones... and assume that client+server run in the same timezone. So you better handle timezone conversion explicitly. Many devs do not use timestamp types at all and store System.currentTimeMillis() as long. – user1050755 Mar 7 at 0:38

When incrementing time you should convert back to UTC and then add or subtract. Use the local time only for display.

This way you will be able to walk through any periods where hours or minutes happen twice.

If you converted to UTC, add each second, and convert to local time for display. You would go through 11:54:08 p.m. LMT - 11:59:59 p.m. LMT and then 11:54:08 p.m. CST - 11:59:59 p.m. CST.

share|improve this answer

Instead of converting each date in long you use the following code

long i = (sDt4.getTime() - sDt3.getTime()) / (1000);
System.out.println(i);

And see the result is:

1
share|improve this answer
11  
I'm afraid that's not the case. You can try my code in you system, it will output 1, because we have different locales. – Freewind May 16 '12 at 5:39

protected by gdoron Mar 10 at 6:01

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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