I wrote the following code
Date d = new Date();
CharSequence s = DateFormat.format("MMMM d, yyyy ", d.getTime());
I want the current date in string format, like
28-Dec-2011
so that I can set it into a TextView
.
I wrote the following code
Date d = new Date();
CharSequence s = DateFormat.format("MMMM d, yyyy ", d.getTime());
I want the current date in string format, like
28-Dec-2011
so that I can set it into a TextView
.