3
解析full date.toString();解析字符串日期與時區EEST EET
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請幫助,而不是