Sorry,
should have told you to try this first:
DateFormat format = new SimpleDateFormat("dd/MMM/yyyy");
will return short description of month
DateFormat format = new SimpleDateFormat("dd/MMMM/yyyy");
Will return full name, you can mess with YY in the same way, does this help??
|