I have problem to parse my string:
String dateString = "Mon Nov 23 2015 08:00:00";
try {
DateFormat readFormat = new SimpleDateFormat( "EEE MMM dd yyyy HH:mm:ss");
Date date = readFormat.parse(dateString);
return date;
} catch (ParseException e) {
Log.e("Error", e.getMessage());
return null;
}
The problem is
java.text.ParseException: Unparseable date: "Mon Nov 23 2015 08:00:00" (at offset 0)
Can you please help me. thanks.