My question might be trivial but I'm just looking for clarifications. I read somewhere in SO that Java's Date() is actually always in UTC time, how come when I create a Date() object and print it using toString(), it displays the local time. If this is not the right way to print it, what should it be so I would get the UTC time?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

For formatting, you should really use a DateFormat implementation (e.g. SimpleDateFormat). That will let you specify the time zone (and output format). Date itself has no concept of time zones - it represents an instant in time, using the "milliseconds since the Unix epoch" as storage. The toString() method just converts whatever instant is represented into a local time using the system default time zone.

Personally I'd advise moving away from the built-in date/time API entirely and using Joda Time as a far more sensible library.

link|improve this answer
yes, it was actually from your post that I came up with this question. For printing, yes I do use DateFormat. But how is "UTC" related to Date()? I couldn't find the connection and why it always displays local time, when I thought it should be UTC time (GMT+0)? Well, I know that Date() is just represents time elapsed since January 1, 1970... – jasonline May 10 '11 at 9:02
@jasonline: The Unix epoch is defined to be midnight January 1st 1970 in UTC. – Jon Skeet May 10 '11 at 9:03
So I guess that's how the connection came up, and I shouldn't expect the UTC time to be displayed if I'm somewhere living in GMT+8 for example. – jasonline May 10 '11 at 9:06
@jasonline: Not from Date.toString, no. As I say, use Joda instead :) – Jon Skeet May 10 '11 at 9:07
feedback

Your Answer

 
or
required, but never shown

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