Copiez le code comme suit :
importer java.sql.Timestamp ;
importer java.text.SimpleDateFormat ;
importer java.util.TimeZone ;
Test de classe publique {
public static void main (String[] arguments) {
SimpleDateFormat sdf = new SimpleDateFormat("aaaa-MM-jj HH:mm:ss");
long t = System.currentTimeMillis();
t = t / (1 000 * 3 600 * 24) * (1 000 * 3 600 * 24) ;
System.out.println(sdf.format(new Timestamp(t)));
t = System.currentTimeMillis();
t = t / (1000 * 3600 * 24) * (1000 * 3600 * 24) - TimeZone.getDefault().getRawOffset();
System.out.println(sdf.format(new Timestamp(t)));
}
}
Si le décalage horaire n’est pas déduit, l’heure sera celle par défaut du 8e arrondissement Est de Pékin (GMT+8).