How to get Date format like this?
Saturday,Dec 11,2011
Edited:
My code portion is like the following:
String outDate
Try to use this function
Date today=new Date(); public String getCurrentTime() { SimpleDateFormat sdf = new SimpleDateFormat("EEEE,MM,dd,YYYY"); String ClsCurrentDay = sdf.format(today); return ClsCurrentDay; }