2016-08-15T16:00:00.000Z 格式转换成yyyy-MM-dd HH:mm:ss格式

public static String UTCStringtODefaultString(String UTCString) {
try
{
if (CommonUtils.notNullAndEmpty(UTCString)) {
UTCString = UTCString.replace("Z", " UTC");
SimpleDateFormat utcFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS Z");
SimpleDateFormat defaultFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = utcFormat.parse(UTCString);
return defaultFormat.format(date);
}else{
return null;
} } catch(ParseException pe)
{
pe.printStackTrace();
return null;
}
}

  

上一篇:c/c++ 数据结构之位图(bitmap)具体解释


下一篇:解决阿里云ECS下kubeadm部署k8s无法指定公网IP