从服务中检索日期格式
这个问题在这里已经有了答案:
这是MS JSON日期格式。
使用:
var myDate = new Date(parseInt(String(dateString).substr(6)));
String mDate = getFormattedDate(e.getString("JSON OBJECT"));
private String getFormattedDate(String stringDate) throws JSONException {
String strDate = stringDate.replace("/Date(", "").replace(")/", "");
strDate = strDate.substring(0, strDate.indexOf("+"));
Long longDate = Long.parseLong(strDate, 10);
Date mDate = new Date(longDate);
SimpleDateFormat sdf = new SimpleDateFormat("MMM dd, yyyy");
String formattedDate = sdf.format(mDate);
return formattedDate;
}
链接地址: http://www.djcxy.com/p/8163.html