import java.util.Calendar;
import java.util.Formatter;
public class DateLong {
public static void main(String[] argv) throws Exception {
Formatter fmt = new Formatter();
Calendar cal = Calendar.getInstance();
fmt.format("Format long de la date: %tA %1$td %1$tB , %1$tY", cal);
System.out.println(fmt);
}
}
//Format long de la date: samedi 20 ao�t , 2011