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.

Imagine I store everything on the server according to the server's date. However, when the user tries to access these data from the server, the user might be not in the same timezone as the server. So, basically when the user receives data from the server, I want the data's date to be converted to user's timezone. How can I do this in gwt, considering I'm receiving a Date object from the server? Any links or suggestions are highly welcome.

Thank you.

share|improve this question

2 Answers

up vote 1 down vote accepted

A java.util.Date object doesn't have a time zone. It's a moment in time, and can be formatted using a specific time zone in order to be readable by humans. The DateTimeFormat documentation seems to indicate that it handles the browser time zone. It also has a format method taking a TimeZone as argument.

share|improve this answer
Thanks. This is exactly what I needed to know =) – gwtNoob Mar 7 '11 at 16:53

GWT is not going to be that helpful, you should translate dates between timezones yourself and then pass the objects to the GWT layer to display them correctly. You should use Calendar to jump between timezones, have a look here for some ideas.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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