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()));
  }
}

A Voir sur le même Sujet:

  • package
  • utilisation de simpledateformat
  • recuperer simpledateformat java
  • simpledateformat java 7
  • java.text.SimpleDateFormat
  • java dateformat date en lettres
  • aide simple date format java
  • set simpleformatdate java exemple
  • DateFormat nom du jour
  • namespace de simpledateformat c#

Leave a Reply

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