Possible Duplicate:
Timezone conversion
I have a date in UTC, how to convert it to other timezone?
I have a date in UTC, how to convert it to other timezone? |
|||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
java.util.DateDespite what the output of java.util.Calendar
Note that after changing the time zone the date (point in time) didn't changed. Only the representation (current hour in this particular time zone). Also note that November is important there. If we change the month to July suddenly the hour in Melbourne changes to 16:00. That's because Tokyo does not observe DST, while Melbourne does. java.text.DateFormatThere is another catch in Java with time zones. When you are trying to format a date you need to specify time zone explicitly:
Otherwise
Since |
||||
|
|
|
You can try Joda-Time library. They have 2 functions called withZone() and withZoneRetainFields() to perform timezone calculations. |
|||
|
|