I have a string in the pattern yyyy-MM-dd hh:mm a and i can get the time zone object separately in which the above string represents the date.
I want to convert this to the below format. yyyy-MM-dd HH:mm:ss Z
How can i do this?
|
|
You can use SimpleDateFormat with
Prints out:
Update 2010-12-01: If you want to explicitly printout a special TimeZone, set it in the SimpleDateFormat:
Which prints |
|||||||||||
|
|
Use SimpleDateFormat
|
|||||||||||
|
|
Create a new instance of SimpleDateFormat using your date pattern. Afterwards you can call it's parse method to convert date strings to a java.util.Date object. See also: http://www.exampledepot.com/egs/java.text/ParseDate.html |
|||
|
|