我有一个日期作为2013-02-12T20:52:20Z
格式的字符串,我想得到字符串20:52 12 Feb 2013
。
如何做到这一点?
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");
Date date = dateFormat.parse(yourStringDate);
String newDateString = new SimpleDateFormat("HH:mm dd MMM yyyy").format(date);
试试这个
String datemillis = "2013-02-12T20:52:20Z";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date convertedDate = new Date();
try {
convertedDate = format.parse(datemillis);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}