解析完整 date.toString() 有问题;
private final DateFormat dfFull = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
String str = "Wed Oct 30 13:05:26 EET 2013";
dfFull.parse(str);
输出
java.text.ParseException: Unparseable date: "Wed Oct 30 13:05:26 EET 2013"
EEST 也有同样的问题
请帮忙