problème conversion date en chaîne
Bonjour,
J'ai pris le code suivant de la FAQ:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
import java.util.*;
import java.text.DateFormat;
public class Date {
public static void main(String arg[]){
Locale locale = Locale.getDefault();
DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.SHORT, locale);
Date maDate = new Date();
System.out.println(dateFormat.format(maDate));
} |
et il me donne l'erreur suivante:
Code:
1 2 3 4 5
|
Exception in thread "main" java.lang.IllegalArgumentException: Cannot format given Object as a Date
at java.text.DateFormat.format(Unknown Source)
at java.text.Format.format(Unknown Source)
at Date.main(Date.java:24) |
je ne sais pas ou est le problème. Merci d'avance pour votre aide.