I have converted some dates to string and stored them in my database using
DateFormat formatter = new SimpleDateFormat("dd-MM-yyyy hh:mm:ss");
they look like this: "12-09-2012 02:33:00" when they come out as strings
I am then trying to retrieve them using
DateFormat formatter = new SimpleDateFormat("hh:mm:ss");
this gives me a parseexception saying that it's and unparsable date this is the exception message:
java.text.ParseException: Unparseable date: "12-09-2012 02:33:00" (at offset 2)
Here is some code to give a better understanding of what I am doing:
String start="";
String slut="";
DateFormat formatterday = new SimpleDateFormat("hh:mm:ss");
start=formatterday.format(formatterday.parse(a.startTime));
slut=formatterday.format(formatterday.parse(a.endTime));
I have tried sepparating my statements so that I parse first and then format and the error seems to appear during parse.
