I'm trying to parse a date string using joda time and unfortunately I can't find a way to parse the timezone.
Here my latest attempt:
String s = "2013-09-20 13:23:50 Etc/GMT";
DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss ZZZ").parseDateTime(s)
results in
java.lang.IllegalArgumentException: Invalid format: "2013-09-20 13:23:50 Etc/GMT" is malformed at "Etc/GMT"
Where is the error in my pattern?