当前位置:   article > 正文

Java转换解析中间带有 “T“和“Z“ 的时间格式_java中2024-03-05t16:40:29.512z转datatime

java中2024-03-05t16:40:29.512z转datatime

今天遇到这样的时间格式需要进行转化

2021-11-02T05:55:14.428Z

转换代码如下

import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

public class TimeFormat {
    public static void main(String[] args) throws ParseException {
        //需要转换的时间
        String myDateString = "2021-11-02T05:55:14.428Z";
        //进行转化时区
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.US);
        Date myDate = dateFormat.parse (myDateString.replace("Z","+0000"));
        //转换为年月日时分秒
        DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String format = df.format(myDate);
        System.out.println(format);
    }

}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

最终效果
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/572119
推荐阅读
相关标签
  

闽ICP备14008679号