Exemple d’utilisation de ‘SimpleDateFormat’ du package ‘java.text’

Author:

Exemple,d'utilisation,de,'SimpleDateFormat',du,package,'java.text'
{filelink=5603}


import java.text.SimpleDateFormat;
import java.util.Calendar;

public class ExempleSimpleDateFormat
 {
  public static void main(String args[])
  {
    String FORMAT_DATE = "dd-MM-yyyy";
    SimpleDateFormat sdf = new SimpleDateFormat(FORMAT_DATE);
    Calendar c1 = Calendar.getInstance(); // aujourd'hui
    System.out.println("Nous somme le " + sdf.format(c1.getTime()));
  }
}

Leave a Reply

Your email address will not be published. Required fields are marked *