When I create a new Date object, it is initialized to the current time but in the local timezone. How can I get the current date and time in GMT?
| ||||
|
feedback
|
|
java.util.Date is always in UTC. What makes you think it's in local time? I suspect the problem is that you're displaying it via an instance of Calendar which uses the local timezone, or possibly using Date.toString() which also uses the local timezone. If this isn't the problem, please post some sample code. I would, however, recommend that you use Joda Time anyway, which offers a much clearer API. | |||||||||||||||||
feedback
|
| |||
|
feedback
|
| |||||||
feedback
|
|
This definitely returns UTC time: as String and Date objects !
| |||||||
feedback
|
Wrong!
and
will return the same time. Idem for
| ||||
|
feedback
|
| |||
|
feedback
|
|
With:
Then
You could ask | |||||
feedback
|
|
You can use:
Then all operations performed using the aGMTCalendar object will be done with the GMT time zone and will not have the daylight savings time or fixed offsets applied. I think the previous poster is correct that the Date() object always returns a GMT it's not until you go to do something with the date object that it gets converted to the local time zone. | |||
|
feedback
|
|
If you want a Date object with fields adjusted for UTC you can do it like this with Joda Time:
| |||
|
feedback
|
|
Sample code to render system time in a specific time zone and a specific format.
Output
| ||||
|
feedback
|
| ||||
|
feedback
|
|
I know these types of topics are completely over discussed, but I found the commons-lang package really handles these common java issues well. http://commons.apache.org/lang/api-2.5/org/apache/commons/lang/time/ Check out the various packages they have. | |||
|
feedback
|
|
You can directly use this
| |||
|
feedback
|
|
Here an other suggestion to get a GMT Timestamp object:
| |||
|
feedback
|
|
Just to make this simpler, to create a
Which will construct a new instance for If you need a | |||
|
feedback
|
|
Jon Skeet asks:
I am not the Downvoter, but here is what seems to be incorrect in that answer. You said:
However, the code:
gives the local hours, not GMT (UTC hours), using no That is why is seems something is incorrect. Putting together the responses, the code:
shows the GMT hours instead of the local hours -- note that | ||||
|
feedback
|