I am trying to parse the following string to date
2013-02-01T09:37:20EST
I need to compare it with current date to see it is before or after current date.
Here is what I am doing
Date formatTime(String time) throws exception
{
String format = "yyyy-MM-dd HH:mm:ss z";
DateFormat dateFormat = new SimpleDateFormat(format);
Date expTime = dateFormat.parse(time);
return expTime;
}
I am getting java.text.ParseException: Unparseable date: "2013-02-01T09:37:20EST" (at offset 10)
Thanks.
