Here is code to parser "Wed, 01 Jul 2015 17:32:41 EDT", but it still doesn't work. Does anyone can help me figure it out? many thanks.
SimpleDateFormat formatter = new SimpleDateFormat("EEE dd MMM yyyy HH:mm:ss zzz");
try {
return formatter.parse(text);
} catch (ParseException e) {
e.printStackTrace();
}