0

我正在尝试将日期字符串解析为 Date 但无法解析。它显示了一些异常

代码

Date date = null;
String dtStart = "2013-11-08 05:46:55" ;  
SimpleDateFormat  format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");  
try {  
    date = format.parse(dtStart);  
    System.out.println("Date ->"+date);  
} catch (ParseException e) {  
    // TODO Auto-generated catch block  
    e.printStackTrace();  
}

堆栈:

11-08 19:04:06.394: W/System.err(8659): java.text.ParseException: Unparseable date: "2013-11-08 05:46:55"
11-08 19:04:06.402: W/System.err(8659):     at java.text.DateFormat.parse(DateFormat.java:626)

请给出一些解决方案

4

2 回答 2

5

像这样改变..你会得到日期..

SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
于 2013-11-08T13:44:50.403 回答
1

试试这个

SimpleDateFormat  format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
date = format.parse(dtStart);  
//Output it as a string that uses the new format
SimpleDateFormat newFormat_date= new SimpleDateFormat("dd MMMMMMMMM yyyy"); 

if (date!=null) {
String desiredDateFormat = newFormat_date.format(date);
holder.posted_on_date.setText(desiredDateFormat);
}else{
holder.posted_on_date.setText("N/A");
}
于 2013-11-08T13:48:30.950 回答