I have a requirement. I want to convert Date object to formatted Date object.
I mean,
`Date d = new Date();System.out.println(d);'
Output: Thu Apr 05 11:28:32 GMT+05:30 2012
I want output to be like 05/APR/2012. And the output object must be Date and not String. If at all you are not clear , I'll post more clearly
Thank You.