I am using SimpleDateFormat to display a Calendar like this :
public String getDate()
{
String DATE_FORMAT = "EEEE, dd/MM/yyyy HH:mm:ss";
SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
System.err.println(date.getTime().getMonth());
return sdf.format(date.getTime());
}
The shell returns 6 and the display : mardi, 06/07/2010 12:44:52
It can't be possible ? Why ?
Thanks
datecome from in your code? Is it just a class variable initialized to the current time and date? – Bill the Lizard♦ Jun 7 '10 at 19:23date.set()whenCalendar date = Calendar.getInstance()and I didn't realized that month should be between 0 and 11. – Natim Jun 7 '10 at 19:29