I want to convert Date in different Format.
For example,
String fromDate = "2011-04-22"; I want to convert this fromDate as "22nd Apr, 2011"
How can I do this?
Thanks in Advance
|
I want to convert Date in different Format. For example, String fromDate = "2011-04-22"; I want to convert this fromDate as "22nd Apr, 2011" How can I do this? Thanks in Advance |
|||
|
|
|
What you want is a little tricky because of the "nd" in 22nd. Depending on the day it'll need a different suffix.
|
|||||
|
|
|
You can parse the given format using a
Not sure how to if there is a way to add the 'nd' to '22nd' though. |
|||
|
|
|
Following this code to remove ordinal of date. It is running successfully.
|
||||
|
|
|
|||
|
|
|
I would like to point out that format should depend on Locale... Sure, you can do it like this:
Of course, instead of Locale.US you need to pass end user's Locale... BTW. Instead of lousy SimpleDateFormat you might want to use Apache Commons Lang's FastDateFormat. Please also find DateUtils if you are performing a lot of Date-related operations. |
|||||
|