1
我想解析「updated_time」並試圖在Date()對象中進行轉換。但我得到了異常。java.text.ParseException:Unparseable date(facebook date)
java.text.ParseException: Unparseable date: "2015-10-11T07:21:14+0000"
這是我的代碼。
private Date convertStringToDate(String createdAt) {
Date convertedDate = new Date();
try {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
convertedDate = formatter.parse(createdAt);
} catch (ParseException e) {
Log.e(TAG, "parse exception while converting string to date for facebook : "+e.toString());
}
return convertedDate;
}
我Google,但沒有發現太多..
不..它不起作用 –