zoukankan      html  css  js  c++  java
  • 2018-05-01T00:00:00.000+08:00转2018-05-01 00:00:00

    /**
         * 2018-05-01T00:00:00.000+08:00转2018-05-01 00:00:00
         * @param oldDateStr
         * @return
         * @throws ParseException
         */
        public static String dealDateFormat(String oldDateStr) throws ParseException {
            if(oldDateStr.length()<=10){
                 return oldDateStr+" 23:59:59";
            }
            DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
            Date  date = df.parse(oldDateStr);
            SimpleDateFormat df1 = new SimpleDateFormat ("EEE MMM dd HH:mm:ss Z yyyy", Locale.UK);
            Date date1 =  df1.parse(date.toString());
            DateFormat df2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            return df2.format(date1);
        }
    
    
        public static void main(String[] args) throws ParseException {
            System.out.println(dealDateFormat("2018-05-01"));
            
        }
  • 相关阅读:
    GO 函数的参数
    GO 函数
    GO 指针
    GO 结构体
    GO 接口
    码云git常用命令
    GO Map的初步使用
    GO Slice
    GO 数组
    GO 键盘输入和打印输出
  • 原文地址:https://www.cnblogs.com/SimonHu1993/p/9139534.html
Copyright © 2011-2022 走看看