From the java doc, the MEDIUM format is: MEDIUM is longer, such as Jan 12, 1952
http://java.sun.com/j2se/1.4.2/docs/api/java/text/DateFormat.html
How can I customize it so that I does not display the year? And spell out "Jan" to January?
Do I need to do that myself? * chop off the string after the ',' * have a table which map the month short name (Jan) to its long name (January)?
Thank you.