Besoin de recuperer date

Fermé
faradjis - 10 juin 2014 à 17:29
Dinath Messages postés 1602 Date d'inscription vendredi 12 avril 2013 Statut Contributeur sécurité Dernière intervention 6 novembre 2021 - 12 juin 2014 à 16:11
Bonjour,

je voudrais recuperer la date de mon d
systeme en java, comment faire stp? merci d'avance!

1 réponse

Dinath Messages postés 1602 Date d'inscription vendredi 12 avril 2013 Statut Contributeur sécurité Dernière intervention 6 novembre 2021 218
12 juin 2014 à 16:11
Salut,

Seriously ?

/**
     * Return the current Date from the system
     * 
     * @return 
     */
    
    public Date getCurrentDate() {
        Calendar cal = new GregorianCalendar();
        Date creationDate = cal.getTime();
        SimpleDateFormat sdf = new SimpleDateFormat(this.simpleDateFormat);
        try {
            return sdf.parse(creationDate.toString());
        } catch (ParseException ex) {
            System.err.println("GlobalFunctions.java > getCurrentDate() : " + ex);
        }
        return cal.getTime();
    } 

0