我有呼叫服務器,返回int的createAt,我想轉換爲日期。android convert「createAt」date
@JsonProperty(FoursquareWebService.WS_API_JSON_FIELD_CREATEDAT)
public int getCreatedAt() {
return this.createdAt;
}
你能幫助我嗎?
SimpleDateFormat format = new SimpleDateFormat("MMM d, yyyy");
String date = format.format(new Date(item.getCreatedAt()));
Log.e(">>>>>>>>>>CreateAt",
"" + item.getCreatedAt());
Log.e(">>>>>>>>>>",
"" + date);
結果:
05-28 10:22:01.829 10593-10593/com.cc E/>>>>>>>>>>CreateAt﹕ 1363880768
05-28 10:22:01.829 10593-10593/com.cc E/>>>>>>>>>>﹕ Jan 16, 1970
它是正確的:2012年10月3日
要轉換什麼正確的結果? –
但是你已經在轉換日期。有什麼問題? –
結果不正確。 :( – QuestionAndroid