JAVA系统时间戳转秒、分、小时、天


(转载请删除括号里的内容)

1、时间戳(毫秒)

          System.currentTimeMillis()

2、时间戳(转秒)

         System.currentTimeMillis() / 1000

3、时间戳(转分钟)

        System.currentTimeMillis() / 1000 / 60

4、时间戳(转小时)

        System.currentTimeMillis() / 1000 / (60 * 60)

5、时间戳(转天)

       System.currentTimeMillis() / 1000 / (60 * 60 * 24)

 

转换成各种格式的时间:

 1 public class Test{ 2     public static void main (String args []){  3         java.util.Date a = new java.util.Date(); 4         System.out.println(a); 5          6         java.sql.Date b = new java.sql.Date(a.getTime()); 7         System.out.println(b); 8          9         java.sql.Time c = new java.sql.Time(a.getTime());10         System.out.println(c);11         12         java.sql.Timestamp d=new         13                 java.sql.Timestamp(a.getTime());14         System.out.println(d);15     }16 }

运行结果:

1 Mon Apr 03 18:00:34 CST 20062 2006-04-033 18:00:344 2006-04-03 18:00:34.388

 

———————
作者:天涯_浪子
来源:CNBLOGS
原文:https://www.cnblogs.com/tyrd/p/16385681.html
版权声明:本文为作者原创文章,转载请附上博文链接!
内容解析By:CSDN,CNBLOG博客文章一键转载插件

原创文章,作者:sunnyman218,如若转载,请注明出处:https://blog.ytso.com/278165.html

(0)
上一篇 2022年8月1日
下一篇 2022年8月1日

相关推荐

发表回复

登录后才能评论