JAVA獲取當前系統事件System.currentTimeMillis()
阿新 • • 發佈:2017-06-02
語句 long sys -m 結果 simple 1970年1月1日 str 時間
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()