I have a Grails application with the following code:

Date now = Calendar.getInstance().getTime() //Also tried new Date()
println "now: " + now

When I do this, I get now: Thu Aug 18 12:47:09 CDT 2011. I need the date to be in GMT, not local time because I need to store the GMT time in a database. I can use a simpleDateFormat object to print out the time in GMT, but I need to actually store it as GMT.

Question: How do I convert a Date object to a Date object using GMT?

link|improve this question

@jpredham should probably get the "answer" to this question as he is correct on retrieving the date/time as GMT. (I tested it myself and found it true.) Plus he's newer and the rest of us already have quite a bit of reputation. – Chris Aldrich Aug 19 '11 at 12:39
feedback

7 Answers

up vote 4 down vote accepted

This accentuates why Java sucks at time. The previous posts are all close, but we need to be very careful about getting the current time in GMT, and getting the current time in CDT and calling it GMT.

TimeZone reference = TimeZone.getTimeZone("GMT");
Calendar myCal = Calendar.getInstance(reference);

This is the current time in GMT, with a timezone context of GMT.

To convert to a Date object which keeps the zone intact you'll need to call:

TimeZone.setDefault(reference);

This setting will last as long as your current JVM. Now calling get Time should produce the desired result.

myCal.getTime();
link|improve this answer
Kudos to you! I altered my post to better reflect you what said. And even the ZONE_OFFSET thing didn't work. Good catch! – Chris Aldrich Aug 18 '11 at 19:09
Thanks for the help! This worked like a charm! – Sum Deos Aug 19 '11 at 13:57
feedback

Well, if you really want time in GMT, you need to get it as GMT (@jpredham is right. Kudos to you! Editing my post to reflect this)

So do the following

//this option uses TimeZone
TimeZone gmtTimeZone = TimeZone.getTimeZone("GMT");
TimeZone.setDefault(gmtTimeZone);
Calendar calendar = Calender.getInstance(gmtTimeZone);

Date myDate = calendar.getTime();
link|improve this answer
feedback

Take a look at JodaTime. There's lots here, too, but seems intuitively more complicated than it should be.

link|improve this answer
If you can use JodaTime, then this is definitely the best way. Btw, with JodaTime, here's how to find the current time in UTC: new DateTime(DateTimeZone.UTC) – Sean Reilly Aug 18 '11 at 18:38
Thanks for the suggestion. Unfortunately, at this point in time adding another library/plugin is not an option, although Joda does look MUCH easier... – Sum Deos Aug 19 '11 at 15:21
feedback

Internally a Calendar object stores the time in UTC (the modern name for GMT). getTimeInMillis() returns a UTC value, and is probably what you want to store.

link|improve this answer
feedback

You should try GregorianCalendar#setTimeZone(TimeZone timeZone).

link|improve this answer
feedback

Using System.currentTimeMillis() is not only much faster than using Calendar or Date, it always gives you the GMT time. If you want to display this time, you can use SimpleDateFormat, setting the time zone to what ever you want.

link|improve this answer
feedback

Try this:

println Calendar.getInstance(TimeZone.getTimeZone('GMT')).format('HH:mm:ss')

Note that when you convert to a date, you lose the timezone information. When Java/Groovy formats your Date for printing, it automatically formats it for your local timezone. Don't worry, your date doesn't have a timezone associated with it. You can add the proper timezone back in when you display it like so:

Date now = Calendar.getInstance(TimeZone.getTimeZone('GMT')).time
def formatter = new java.text.SimpleDateFormat('HH:mm:ss')
formatter.timeZone = TimeZone.getTimeZone('GMT')
println formatter.format(now)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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