次の日付を解析しようとしています:
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)
何が間違っているのですか?
ありがとう