How to get Date format like this?
Saturday,Dec 11,2011
Edited:
My code portion is like the following:
String outDate
You can use SimpleDateFormat.
Try:
SimpleDateFormat formatter = new SimpleDateFormat("EEEE,MMM dd,yyyy"); String text = formatter.format(...);
That will use the default locale - adjust accordingly for a different one.