import java.text.MessageFormat;
import java.util.Date;
public class FormatLong {
public static void main(String[] argv) throws Exception {
Object[] params = new Object[] { new Date() };
String msg = MessageFormat.format("Date du jour: {0,date,long}",
params);
System.out.println(msg);
}
}