Java获取当前系统事件System.currentTimeMillis()方法
System.currentTimeMillis()产生一个当前的毫秒,这个毫秒其实就是自1970年1月1日0时起的毫秒数,Date()其实就是相当于Date(System.currentTimeMillis()),因为Date类还有构造Date(longdate),用来计算long秒与1970年1月1日之间的毫秒差。
得到了这个毫秒数,我们自己也可以算起现在的年月日周时,但是这不是我们去计算的,因为有Calendar.Calendar最终结出的结果就是年月日周时时区。
System.currentTimeMillis()获得的是自1970-01-0100:00:00.000到当前时刻的时间距离,类型为long
String.valueOf(System.currentTimeMillis())这个语句可转为一下的格式:
longct=System.currentTimeMillis();
Stringt=String.valueOf(ct);
其实上面的Stringt就相当于ct+"";
知识转为字符串格式
publicStringrefFormatNowDate(){ DatenowTime=newDate(System.currentTimeMillis()); SimpleDateFormatsdFormatter=newSimpleDateFormat("yyy-MM-dd"); StringretStrFormatNowDate=sdFormatter.format(nowTime); returnretStrFormatNowDate; }
以上这篇Java获取当前系统事件System.currentTimeMillis()方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。