Afficher le fuseau horaire en format Complet ‘EST’

Author:

Afficher,le,fuseau,horaire,en,format,Complet,'EST'
{filelink=6300}


import java.text.SimpleDateFormat;
import java.util.Date;

public class FuseauHComplet
{

  public static void main(String[] args) {
    Date date = new Date();

    SimpleDateFormat format = new SimpleDateFormat("zzzz");
    System.out.println("Fuseau horaire en Format Complet : " + format.format(date));
  }
}

Leave a Reply

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