JAVA获取当前系统事件System.currentTimeMillis()

Posted 潇潇暮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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-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()的主要内容,如果未能解决你的问题,请参考以下文章

如何通过'java.sql.date'获取当前系统月份?

java如何通过calendar类获取当前系统日期

java 获取系统当前时间并格式化

系统挂起再恢复时如何获取事件

java获取当前系统时间

Java 获取 Unix时间戳