utc时间转毫秒

Posted 琅琊山二当家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了utc时间转毫秒相关的知识,希望对你有一定的参考价值。

public class DateUtils 


    private DateUtils() 
    

    public static final String FORMAT_UTC =  "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
 

 
    public static long formatUTCToLong(String utc) throws ParseException 
        SimpleDateFormat sdf = new SimpleDateFormat(FORMAT_UTC);
        Date parse = sdf.parse(utc);
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(parse);
        calendar.set(Calendar.HOUR, calendar.get(Calendar.HOUR) + 8);
        return calendar.getTimeInMillis();
    

public static void main(String[] args) throws ParseException 
    String FORMAT_UTC =  "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
    String utc ="2022-11-15T14:00:08.996Z";
    SimpleDateFormat sdf = new SimpleDateFormat(FORMAT_UTC);
    Date parse = sdf.parse(utc);
    Calendar calendar = Calendar.getInstance();
    calendar.setTime(parse);
    calendar.set(Calendar.HOUR, calendar.get(Calendar.HOUR) + 8);
    System.out.println(formatUTCToLong("2022-11-15T14:00:08.996Z"));
    System.out.println(formatUTCToLong("2022-11-15T14:00:08.997Z"));
    System.out.println(formatUTCToLong("2022-11-15T14:00:09.000Z"));

输出效果

1668520808996
1668520808997
1668520809000

以上是关于utc时间转毫秒的主要内容,如果未能解决你的问题,请参考以下文章

Hive日期格式转换详解(包含13位时间戳转毫秒时间)

php获取UTC时间戳

Android 从 GMT 毫秒获取 UTC 毫秒

将日期、时间和 UTC 偏移值转换为自 unix 纪元以来的毫秒数?

将 UTC 时间戳(毫秒)插入 Oracle 时间戳列

使用 c++ 将纪元毫秒转换为 UTC 日期和时间