I meet the problem with this code:
SimpleDateFormat df = new SimpleDateFormat("MM/dd/yyyy");
Date date = df.parse("2013-03-07 23:59:00.0")
I get the exception:
java.text.ParseException: Unparseable date: java.text.ParseException: Unparseable date: "2013-03-07 23:59:00.0"
How can I convert this kind of String to Date?