DarkLord a écrit a écrit :
Utilise GregorianCalandar
|
en fait c'est quelque chose que j'ai recupéré tel quel
Code :
- TimeZone tz = TimeZone.getTimeZone("EST" );
- Date now = new Date();
- DateFormat df = new SimpleDateFormat ("mm.dd.yyyy hh:mm:ss " );
- df.setTimeZone(tz);
- String currentTime = df.format(now);
|
on fait comment avec ton GregorianCalandar ?