我有这种形式的日期字符串Thu Aug 02 00:00:00 GMT+00:00 2012
我尝试使用此方法在 Date 对象中解析这些字符串
public Date fromStringToDate(String data) {
Date result;
SimpleDateFormat sdf = new SimpleDateFormat("yyyy MM dd HH:mm:ss");
try {
result = sdf.parse(data);
return result;
} catch (ParseException e) {
e.printStackTrace();
return null;
}
}
但不起作用,我收到此错误
java.text.ParseException: Unparseable date: "Thu Aug 02 00:00:00 GMT+00:00 2012"
我想问题是由错误引起的SimpleDateFormat
,但我不知道修复它的正确语法。