我有服務,支持這一JSON:CONVER日期時間字符串轉換爲毫秒
JSON={"time":"2015-10-29 14:05:13 +0000"}
,所以我想通過它CONVER,以毫秒爲單位:
String temp = json.getString("time");
int point = temp.indexOf("+");
temp = temp.substring(0,point-1);
SimpleDateFormat f = new SimpleDateFormat("yyyy-MMM-dd hh:mm:ss");
Date d = f.parse(temp);
long milliseconds = d.getTime();
,我可以看到我的臨時更改爲:2015-10-29 14:05:13
但它似乎有解析問題。什麼是我的formatig問題
你已經把: 「YYYY-MMM-DD HH:MM:SS」 但你應該只有兩個M的這個月。即「yyyy-MM-dd hh:mm:ss」 – Matt
@ user2145222你是對的。謝謝 – Kenji