0
DateFormat dateFormat = new SimpleDateFormat ("EEE, d MMM Y HH:mm:ss Z", Locale.ENGLISH);
String date = "Mon, 21 Oct 2013 22:21:00 +0400";
dateFormat.format(dateFormat.parse(date)); // returns "Mon, 31 Dec 2013 22:21:00 +0400"
爲什麼結果字符串與輸入日期變量在月份和月份日不同?當dateformat解析和格式化方法是不對稱的?
使用'y'。 –