У меня есть следующая дата:
2011-05-24T11:40:41Z
Как я могу преобразовать это в Joda DateTime?
EDIT : Вот мой код, который не компилируется:
DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
Date date = df.parse(aMessage.getString("updated_at"));
org.joda.time.DateTime dt = new DateTime(date);
Ошибки:
The method parse(String) is undefined for the type DateFormat
Type mismatch: cannot convert from SimpleDateFormat to DateFormat