本文介紹了異常:無法解析的日期:&Quot;Mon,2005年8月20:21:52+0200&Quot;的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我收到此錯誤。
我的代碼有什么問題?
String line = "Date: Mon, 22 Aug 2005 20:21:52 +0200";
String datestring = line.substring(6);
DateFormat dateFormat = new SimpleDateFormat("E, dd MMM yyyy HH:mm:ss ZZZZZ");
Date inputDate = null;
try {
inputDate = dateFormat.parse(datestring);
} catch (ParseException e) {
e.printStackTrace();
}
我的錯誤日志:
這篇關于異常:無法解析的日期:&Quot;Mon,2005年8月20:21:52+0200&Quot;的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,