I want to be able to change the format of the date returned from an access database 1999-09-01 00:00:00 to standard format eg. 24/01/03
here is the code i used
String dbdate = rsCV.getString("thirdlevelDateFrom"
//Date today = new Date();
DateFormat formatter;
formatter = DateFormat.getDateInstance(DateFormat.FULL, Locale.US);
Date thedate = formatter.parse(dbdate);
out.println(formatter.format(thedate)) ;
This gives me the following error
javax.servlet.ServletException: Unparseable date: "1999-09-01 00:00:00"
any ideas