java时间和时间戳

╄→гoц情女王★ 提交于 2020-03-26 07:36:44
http://www.cnblogs.com/qq809102690/p/4009197.html
当前时间的时间戳      
  1. new Date().getTime()      
  2. System.currentTimeMillis(); 

时间转换为时间戳:    
  SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");   
  Integer.valueOf((int) format.parse("2013-02-07 20:55:20").getTime()

 时间戳转化为时间格式:     
  1.  Long timetamp = Long.parseLong(String类型)*1000;        
   String date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(timetamp));         
 
  2.  new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(时间戳值));          
    时间戳值为long类型,数值+L

         
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!