I use rich:calendar with a specific pattern datePattern="dd/MM/yyyy". When I tried to get the string value from the calendar and parse it using SimpleDateFormat ("dd/MM/yyyy") I had some issues and I saw the date format in my variable is not what I expected: Tue Nov 22 00:00:00 EET 2011
Here is some code:
rich:calendar
<rich:calendar value="#{validateReportAction.selectedDate}"
required="true"
requiredMessage="You must select a date"
mode="ajax"
id="date"
datePattern="dd/MM/yyyy"/>
in bean
DateFormat formatter;
Date date;
formatter = new SimpleDateFormat("dd/MM/yyyy");
date = (Date) formatter.parse(getSelectedDate());
where getSelectedDate() returns Tue Nov 22 00:00:00 EET 2011 but I want only the day/month/year. How can I achieve that?
Date#toString(): download.oracle.com/javase/6/docs/api/java/util/… ASystem.out.println(new Date())will output exactly this kind of value. Don't focus too much on it. What do you really want and expect? What's your ultimate goal? – BalusC Nov 2 '11 at 16:05Datein Java side andDATEin SQL side, notStringandVARCHARor something. Use the right type for the data it holds. Otherwise you would be unable to properly sort the column by date or to select some rows which is between two dates, for example. ThatdatePatternis just to format theDateobject in the UI to humans. – BalusC Nov 2 '11 at 18:17