美文网首页
特殊时间处理:2019-01-31T16:00:00.000+0

特殊时间处理:2019-01-31T16:00:00.000+0

作者: DataSource | 来源:发表于2019-03-20 15:56 被阅读0次
    
        public static String dealDateFormat(String oldDate) {
            Date date1 = null;
            DateFormat df2 = null;
            try {
                DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
                Date date = df.parse(oldDate);
                SimpleDateFormat df1 = new SimpleDateFormat ("EEE MMM dd HH:mm:ss Z yyyy", Locale.UK);
                date1 = df1.parse(date.toString());
                df2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            } catch (ParseException e) {
    
                e.printStackTrace();
            }
            return df2.format(date1);
        }
    
    

    相关文章

      网友评论

          本文标题:特殊时间处理:2019-01-31T16:00:00.000+0

          本文链接:https://www.haomeiwen.com/subject/rrqtvqtx.html