I have a certain time in milliseconds (in a Timestamp object) and I want to use it to create a GregorianCalendar object. How can I do that?
EDIT: How do I do the reverse?
|
I have a certain time in milliseconds (in a EDIT: How do I do the reverse? |
||||
|
|
|
Just get an instance of GregorianCalendar and setTime with your java.sql.Timestamp
|
|||
|
|
|
||||
|
|
I believe this works, although it may not be the best approach:
|
||||
|
|
|
To get a GregorianCalendar object and not a Calendar object like Michael's answer provides you can also try the following:
This assumes a UTC epoch timestamp. |
|||
|
|