我已使用此代码解析从 Json 接收的日期格式的字符串。
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try{
Date myDateConference = sdf.parse(jsonO.getString("myDateConference"));
}
catch(ParseException e){
e.printStackTrace();
}
日期的字符串是这种形式的东西2012-08-02T00:00:00
但我得到了这个例外
java.text.ParseException: Unparseable date: "2012-08-02T00:00:00"
怎么了?