I'm trying to convert a string from to a Joda DateTime object. The date is coming from a SQLlite datefield, eg:
2011-11-19 18:29:41
The code I'm using is:
DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss").parseDateTime("2011-11-19 18:29:41").withZone(DateTimeZone.getDefault());
but I'm getting this exception:
java.lang.IllegalArgumentException: Invalid format: "2011-11-19 18:29:41" is malformed at "11-11-19 18:29:41"
EDIT: here is more details in what I'm doing:
I have a utility class, which has a method I'm using to convert strings to DateTime:
public static DateTime GetItemDate(final String date, String pattern)
{
return DateTimeFormat.forPattern(pattern).parseDateTime(date).withZone(DateTimeZone.getDefault());
}
Then I call:
Utilities.GetItemDate("2011-11-19 18:29:41", "YYYY-MM-dd HH:mm:ss");