I have a problem with dates.

I'm sure these milliseconds 1317322560000, represent the date of Thu Sep 29 18:56:00 GMT+02:00 2011 in Italy.

But using the Calendar class the date is Thu Sep 29 20:56:00 GMT+02:00. I think this happens because, the summer schedule is in effect.

how can I convert milliseconds into the corresponding date right?

link|improve this question

15% accept rate
Where di you get Thu Sep 29 18:56:00 GMT+02:00 from? – KayKay Oct 28 '11 at 9:08
From System.currentTimeMillis() – user633772 Oct 28 '11 at 9:26
Please accept some answers. If the answer is correct, you can accept it. – Matthew Farwell Oct 28 '11 at 10:12
feedback

2 Answers

up vote 0 down vote accepted

System.currentTimeMillis() returns "the difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC." (i.e. GMT).

So the "Date" 1317322560000 you have, is 29/09/2011:18:56:00 GMT. In Italy, on 29th Sep the offset from GMT is +2 hours (because of "summer time" or technically speaking DST = Daylight Saving Time). From 30/10/2011:03:00:00 (next sunday by the way), in Italy they will be in "winter time" (no DST), so the offset will be +1).

So you correctly get Thu Sep 29 20:56:00 CEST 2011 (18:56:00 + 2 hours offset in Italy's time zone). Please check this code that shows all this stuff (it is Groovy).

import java.text.DateFormat
import java.util.TimeZone

println Locale.getDefault()
Date d = new Date(1317322560000)
println d
Locale.setDefault(new Locale("it", "IT"))
println Locale.getDefault()

DateFormat df = DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL);
println df.getTimeZone().getOffset(1317322560000) + " => +2h offset in 'summer time' (DST on)"

df.setTimeZone(TimeZone.getTimeZone("GMT+00:00"))
println df.format(d)
df.setTimeZone(TimeZone.getTimeZone("GMT+01:00"))
println df.format(d)
df.setTimeZone(TimeZone.getTimeZone("GMT+02:00"))
println df.format(d)
df.setTimeZone(TimeZone.getTimeZone("Europe/Rome"))
println df.format(d)
println "---"

Date winterDate = new Date(1321382560000)
println winterDate
println df.getTimeZone().getOffset(1321382560000) + " => +1h offset in 'winter time' (DST off)"

The result of this:

es_ES
Thu Sep 29 20:56:00 CEST 2011
it_IT
7200000 => +2h offset in 'summer time' (DST on)
giovedì 29 settembre 2011 18.56.00 GMT+00:00
giovedì 29 settembre 2011 19.56.00 GMT+01:00
giovedì 29 settembre 2011 20.56.00 GMT+02:00
giovedì 29 settembre 2011 20.56.00 CEST
---
Tue Nov 15 19:42:40 CET 2011
3600000 => +1h offset in 'winter time' (DST off)
link|improve this answer
You can check also stackoverflow.com/questions/308683/… – jalopaba Oct 28 '11 at 11:24
It's ok, but if I want to create a calendar from this dataformat and when I request the date, the result is 20.56 – user633772 Oct 28 '11 at 11:46
It will display 18:56 if the timezone is GMT+00:00, 19:56 if TZ is GMT+01:00 and 20:56 if TZ is GMT+02:00, which is your case. There is no way you get a different result if your timezone is GMT+2. So I guess that when you got "18:56" you were running the code with the timezone set to GMT+0. – jalopaba Oct 29 '11 at 8:07
feedback

new Date(1317322560000l)

outputs

Thu Sep 29 20:56:00 CEST 2011

same as your calendar. Why should it be 18:56?

link|improve this answer
Yes, but the result will not change – user633772 Oct 28 '11 at 9:06
Why those milliseconds were recorded at exactly 18:56 in Italy – user633772 Oct 28 '11 at 9:09
Were recorded how ? – KayKay Oct 28 '11 at 9:12
I think with System.currentTimeMillis() – user633772 Oct 28 '11 at 9:17
This means if you did new Date(System.currentTimeMillis()) at 18:56 it would have displayed 20:56.. Can you try it now to see if there is the same 2-hour gap ? – KayKay Oct 28 '11 at 9:29
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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