字符串格式的日期时间解析错误
Date time parsing error from string format
我正在尝试从保存在 sharedpreferences 中的字符串中获取日期格式。
如您所见,picture.current 日期中的错误日期是 19/11/2015 但在解析后更改为 "Mon Jul 11 ..."something.please 为我找到一些帮助。
谢谢。
您从网络服务返回的日期是:11-19-2015。
您尝试从此字符串中获取日期,在这种情况下您应该使用正确的 SimpleDateFormat。
SimpleDateFormat format = new SimpleDateFormat("MM-dd-yyyy", Locale.getDefault());
为此使用SimpleDateFormat
public String getDateTime(){
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00", Locale.ENGLISH);
Date date = new Date();
return format.format(date)+"" ;
}
我正在尝试从保存在 sharedpreferences 中的字符串中获取日期格式。
如您所见,picture.current 日期中的错误日期是 19/11/2015 但在解析后更改为 "Mon Jul 11 ..."something.please 为我找到一些帮助。 谢谢。
您从网络服务返回的日期是:11-19-2015。
您尝试从此字符串中获取日期,在这种情况下您应该使用正确的 SimpleDateFormat。
SimpleDateFormat format = new SimpleDateFormat("MM-dd-yyyy", Locale.getDefault());
为此使用SimpleDateFormat
public String getDateTime(){
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00", Locale.ENGLISH);
Date date = new Date();
return format.format(date)+"" ;
}