i want to use standard class called DateFormat
which has subclass SimpleDateFormat
TO write a method called convert which returns a String in the form dd.mm.yy: when passed a GregorianCalendar with a specific date
public String convert (Calendar gc) { ... }
For example, when myGC is a GregorianCalendar
variable representing the 25th of December 2006, String s = convert(myGC);
should set s to the string "25.12.06".
and i'm having trouble to write a convert method on this