码迷,mamicode.com
首页 > 其他好文 > 详细

三种获取毫秒值的方式

时间:2019-01-11 11:44:28      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:class   现在   imei   pre   获取   get   main   end   tin   

从1970年1月1日0时0分0秒到现在的毫秒数

    public static void main(String[] args) {
        System.out.println(System.currentTimeMillis());
        System.out.println(new Date().getTime());
        System.out.println(Calendar.getInstance().getTimeInMillis());
    }

 

三种获取毫秒值的方式

标签:class   现在   imei   pre   获取   get   main   end   tin   

原文地址:https://www.cnblogs.com/gallenlee978/p/10253884.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!