Classe ‘Calendar’: Affichage Date et heure complete

Author:


Download

 
import java.util.Calendar;
 
public class CalendrierHD {
  public static void main(String[] argv) throws Exception {
 
    Calendar cal = Calendar.getInstance();
    System.out.printf("Date et Heure Complètes: %tc", cal);
  }
}