- My server has GMT+7, so if i move to another server has another GMT timezone, all date stored in db will incorrect?
- Yes Q1 is correct, how about i will store date in GMT+0 timezone and display it in custom GMT timezone chosen by each member
- How i get date with GMT+0 in java
|
|
|
1) To quote from the javadocs, Java millisecond timestamps are
Therefore, as the timestamp is UTC/GMT, if you store it in the database this date will be correct no matter the time zone of the server. 2) Formatting the timestamp for display depending on the timezone would be the correct approach. 3) Creating a new java.util.Date instance and calling getTime() will get you the timestamp for GMT+0 in Java. |
|||
|
|
|
To add to mark's point, once you have a java.util.Date, you can "convert" it to any Timezone (as chosen by the User). Here's a code sample in Groovy (will work in Java with slight mods):
|
||||
|
|
|
By default when you get a date in java its in your current timezone, you can use the TimeZone class to get the timezone your system time is running in. Most databases supports that dates can be stored WITH timezone, which probably would be the right way to do this, but exactly what the format is can be dependant on which database you use. |
|||
|
|
|
I would suggest that you use Date only as a "holder" and propose that you use Calendar instances instead. To get a Calendar in the GMT time zone just use this:
A Calendar will provide a great deal of benefit when you work with times and dates. For instance, adding an hour to this is simple:
Lastly, when you need a Date you just use this:
|
|||
|
|