2010-07-26T11:37:52Z 到 26-jul-2010 (dd-mon-yyyy)
try {
DateFormat df1 = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
DateFormat df2 = new SimpleDateFormat("dd-MMM-yyyy");
return df2.format(df1.parse(input));
}
catch (ParseException e) {
return null;
}
4289

被折叠的 条评论
为什么被折叠?



