我试图解析以下日期:
Wed Aug 27 13:08:45 +0000 2008
(适用于 Twitter API 1.1)
我制作以下格式:
/**
* Large twitter date format sample: "Wed Aug 27 13:08:45 +0000 2008"
*/
private static final String LARGE_TWITTER_DATE_FORMAT = "EEE MMM dd HH:mm:ss Z yyyy";
但它说:
java.text.ParseException: Unparseable date: "Sun Dec 25 14:49:28 +0000 2011" (at offset 0)
at java.text.DateFormat.parse(DateFormat.java:626)
我做错了什么?
谢谢