I have date and time extracted from JSON in following format
2013-01-16T13:43:11
I need to convert it to local time of Pakistan and add 5 hours to that time so the result is like:
06:43
How I can achieve this?
|
I have date and time extracted from JSON in following format
I need to convert it to local time of Pakistan and add 5 hours to that time so the result is like:
How I can achieve this? |
||||
|
|
|
Assuming that
|
|||||
|
|
|
java dateFormat is not threadsafe, use joda time lib instead: you can use withZone method to change time with specific Timezone
|
|||
|
|
|
You can use SimpleDateFormat as below:
Hope it helps. |
|||||
|