Hello i need to parse this string
Sun, 15 Aug 2010 3:50 PM CEST
I'm using SimpleDataFormat in this way
String date = "Sun, 15 Aug 2010 3:50 pm CEST";
DateFormat formatter = new SimpleDateFormat("EEE, dd MMM yyyy h:mm a Z");
Date d = formatter.parse(date);
but it throws an exception.
Can you help me please?
Thanks