I am getting date string from SAX parsing like this: Wed, 18 Apr 2012 07:55:29 +0000
Now, I want this string as : Apr 18, 2012 01:25 PM
How can I do this?
|
I am getting date string from SAX parsing like this: Wed, 18 Apr 2012 07:55:29 +0000 Now, I want this string as : Apr 18, 2012 01:25 PM How can I do this? |
|||
|
|
|
|||||||||||
|
|
Use the standard Java DateFormat class. For example to display the current date and time do the following:
You can initialise a Date object with your own values, however you should be aware that the constructors have been deprecated and you should really be using a Java Calendar object. |
|||
|
|