for some unknown reason this code throws an Unparseable date exception
Any ideas how to solve this issue?
Thanks!
import java.text.DateFormat
import java.text.SimpleDateFormat
String dateString = "Sat Nov 02 2013 00:15:00"
SimpleDateFormat df = new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss");
Date result = df.parse(dateString);
System.out.println(result);
Screenshot how this code is run