Afficher l’heure en fuseau horaire local

Author:

Afficher,l'heure,en,fuseau,horaire,local
Download

 
import java.util.Calendar;
import java.util.GregorianCalendar;
 
public class HeureFuseauLocal
{
	/**       Afficher L'heure en fuseau horaire heure                   **/
  public static void main(String[] argv) throws Exception
    {
 
    Calendar heure = new GregorianCalendar();
    heure.set(Calendar.HOUR_OF_DAY, 10); // 0..23
    heure.set(Calendar.MINUTE, 0);
    heure.set(Calendar.SECOND, 0);
 
  }
}