Besoin de recuperer date

faradjis -  
Dinath Messages postés 1697 Statut Contributeur sécurité -
Bonjour,

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

1 réponse

  1. Dinath Messages postés 1697 Statut Contributeur sécurité 218
     
    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