Java获取当前系统事件System.currentTimeMillis()方法
程序员文章站
2023-12-20 12:46:46
system.currenttimemillis()产生一个当前的毫秒,这个毫秒其实就是自1970年1月1日0时起的毫秒数,date()其实就是相当于date(system...
system.currenttimemillis()产生一个当前的毫秒,这个毫秒其实就是自1970年1月1日0时起的毫秒数,date()其实就是相当于date(system.currenttimemillis()),因为date类还有构造date(longdate),用来计算long秒与1970年1月1日之间的毫秒差。
得到了这个毫秒数,我们自己也可以算起现在的年月日周时,但是这不是我们去计算的,因为有calendar.calendar最终结出的结果就是年月日周时时区。
system.currenttimemillis()获得的是自1970-01-01 00:00:00.000到当前时刻的时间距离,类型为long
string.valueof(system.currenttimemillis())这个语句可转为一下的格式:
long ct = system.currenttimemillis();
string t = string.valueof(ct);
其实上面的string t就相当于 ct+"";
知识转为字符串格式
public string refformatnowdate(){ date nowtime = new date(system.currenttimemillis()); simpledateformat sdformatter = new simpledateformat("yyy-mm-dd"); string retstrformatnowdate = sdformatter.format(nowtime); return retstrformatnowdate; }
以上这篇java获取当前系统事件system.currenttimemillis()方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: MySQL索引用法实例分析
下一篇: iOS仿微信摇一摇动画效果加震动音效实例