日期字符串来自我的应用程序的 XML 提要,格式如下Mon, 10 Dec 2012 13:18:23 GMT
,我想格式化为“13:18:23”。我有这个方法
private String formatTime(String time) {
DateFormat df = new SimpleDateFormat("EEE, dd MMM yyyy kk:mm:ss zzz", Locale.getDefault());
String temp = null;
try {
temp = df.format(time);
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
return temp;
}
但我不断收到错误IllegalArgumentException
。
任何人都可以看到这段代码正在发生的事情吗?