我正在尝试解析以下字符串
2013-02-01T09:37:20EST
我需要将它与当前日期进行比较,以查看它是在当前日期之前还是之后。
这是我正在做的
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;
}
我收到 java.text.ParseException: Unparseable date: "2013-02-01T09:37:20EST" (偏移量 10)
谢谢。