I\'m currently working on some simple project in Java and I have date in the following string:
Java
String dateString = \"Sun 7/14 03:44 AM 2013\";
It is important to add Locale as you are parsing language day of week names.
Locale
String dateString = "Sun 7/14 03:44 AM 2013"; DateFormat format = new SimpleDateFormat("EEE M/dd hh:mm a yyyy", Locale.US); Date d = format.parse(dateString);