您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了System.currentTimeMillis()計算方式與時間單位轉(zhuǎn)換方式,內(nèi)容簡而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。
一、時間的單位轉(zhuǎn)換
1秒=1000毫秒(ms) 1毫秒=1/1,000秒(s)
1秒=1,000,000 微秒(μs) 1微秒=1/1,000,000秒(s)
1秒=1,000,000,000 納秒(ns) 1納秒=1/1,000,000,000秒(s)
1秒=1,000,000,000,000 皮秒(ps) 1皮秒=1/1,000,000,000,000秒(s)
1分鐘=60秒
1小時=60分鐘=3600秒
二、System.currentTimeMillis()計算方式
在開發(fā)過程中,通常很多人都習(xí)慣使用new Date()來獲取當(dāng)前時間。new Date()所做的事情其實就是調(diào)用了System.currentTimeMillis()。如果僅僅是需要或者毫秒數(shù),那么完全可以使用System.currentTimeMillis()去代替new Date(),效率上會高一點。如果需要在同一個方法里面多次使用new Date(),通常性能就是這樣一點一點地消耗掉,這里其實可以聲明一個引用。
//獲得系統(tǒng)的時間,單位為毫秒,轉(zhuǎn)換為妙 long totalMilliSeconds = System.currentTimeMillis(); long totalSeconds = totalMilliSeconds / 1000; //求出現(xiàn)在的秒 long currentSecond = totalSeconds % 60; //求出現(xiàn)在的分 long totalMinutes = totalSeconds / 60; long currentMinute = totalMinutes % 60; //求出現(xiàn)在的小時 long totalHour = totalMinutes / 60; long currentHour = totalHour % 24; //顯示時間 System.out.println("總毫秒為: " + totalMilliSeconds); System.out.println(currentHour + ":" + currentMinute + ":" + currentSecond + " GMT");
小例子:
package demo.spli; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class ShowCurrentTime { /** * @顯示當(dāng)前時間 * @2014.9.3 */ public static void main(String[] args) { // TODO Auto-generated method stub //獲得系統(tǒng)的時間,單位為毫秒,轉(zhuǎn)換為妙 long totalMilliSeconds = System.currentTimeMillis(); DateFormat dateFormatterChina = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM);//格式化輸出 TimeZone timeZoneChina = TimeZone.getTimeZone("Asia/Shanghai");//獲取時區(qū) 這句加上,很關(guān)鍵。 dateFormatterChina.setTimeZone(timeZoneChina);//設(shè)置系統(tǒng)時區(qū) long totalSeconds = totalMilliSeconds / 1000; //求出現(xiàn)在的秒 long currentSecond = totalSeconds % 60; //求出現(xiàn)在的分 long totalMinutes = totalSeconds / 60; long currentMinute = totalMinutes % 60; //求出現(xiàn)在的小時 long totalHour = totalMinutes / 60; long currentHour = totalHour % 24; //顯示時間 System.out.println("總毫秒為: " + totalMilliSeconds); System.out.println(currentHour + ":" + currentMinute + ":" + currentSecond + " GMT"); Date nowTime = new Date(System.currentTimeMillis()); System.out.println(System.currentTimeMillis()); SimpleDateFormat sdFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:dd"); String retStrFormatNowDate = sdFormatter.format(nowTime); System.out.println(retStrFormatNowDate); } }
System.currentTimeMillis()+3600*1000)可以這樣解讀:System.currentTimeMillis()相當(dāng)于是毫秒為單位,但是,后頭成了1000,就變成了以秒為單位。那么,3600秒=1小時,所以輸出為當(dāng)前時間的1小時后。
我們可以這樣控制時間:System.currentTimeMillis()+time*1000),里面?zhèn)魅氲膖ime是以秒為單位,當(dāng)傳入60,則輸出:當(dāng)前時間的一分鐘后
以上就是關(guān)于System.currentTimeMillis()計算方式與時間單位轉(zhuǎn)換方式的內(nèi)容,如果你們有學(xué)習(xí)到知識或者技能,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。