這篇文章主要為大家展示了System.currentTimeMillis()計(jì)算方式與時(shí)間單位轉(zhuǎn)換方式,內(nèi)容簡(jiǎn)而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會(huì)有收獲的,下面讓小編帶大家一起來看看吧。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對(duì)這個(gè)行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡(jiǎn)單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名注冊(cè)、網(wǎng)絡(luò)空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、杜爾伯特網(wǎng)站維護(hù)、網(wǎng)站推廣。
一、時(shí)間的單位轉(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小時(shí)=60分鐘=3600秒
二、System.currentTimeMillis()計(jì)算方式
在開發(fā)過程中,通常很多人都習(xí)慣使用new Date()來獲取當(dāng)前時(shí)間。new Date()所做的事情其實(shí)就是調(diào)用了System.currentTimeMillis()。如果僅僅是需要或者毫秒數(shù),那么完全可以使用System.currentTimeMillis()去代替new Date(),效率上會(huì)高一點(diǎn)。如果需要在同一個(gè)方法里面多次使用new Date(),通常性能就是這樣一點(diǎn)一點(diǎn)地消耗掉,這里其實(shí)可以聲明一個(gè)引用。
//獲得系統(tǒng)的時(shí)間,單位為毫秒,轉(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)在的小時(shí) long totalHour = totalMinutes / 60; long currentHour = totalHour % 24; //顯示時(shí)間 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)前時(shí)間 * @2014.9.3 */ public static void main(String[] args) { // TODO Auto-generated method stub //獲得系統(tǒng)的時(shí)間,單位為毫秒,轉(zhuǎn)換為妙 long totalMilliSeconds = System.currentTimeMillis(); DateFormat dateFormatterChina = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM);//格式化輸出 TimeZone timeZoneChina = TimeZone.getTimeZone("Asia/Shanghai");//獲取時(shí)區(qū) 這句加上,很關(guān)鍵。 dateFormatterChina.setTimeZone(timeZoneChina);//設(shè)置系統(tǒng)時(shí)區(qū) long totalSeconds = totalMilliSeconds / 1000; //求出現(xiàn)在的秒 long currentSecond = totalSeconds % 60; //求出現(xiàn)在的分 long totalMinutes = totalSeconds / 60; long currentMinute = totalMinutes % 60; //求出現(xiàn)在的小時(shí) long totalHour = totalMinutes / 60; long currentHour = totalHour % 24; //顯示時(shí)間 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小時(shí),所以輸出為當(dāng)前時(shí)間的1小時(shí)后。
我們可以這樣控制時(shí)間:System.currentTimeMillis()+time*1000),里面?zhèn)魅氲膖ime是以秒為單位,當(dāng)傳入60,則輸出:當(dāng)前時(shí)間的一分鐘后
以上就是關(guān)于System.currentTimeMillis()計(jì)算方式與時(shí)間單位轉(zhuǎn)換方式的內(nèi)容,如果你們有學(xué)習(xí)到知識(shí)或者技能,可以把它分享出去讓更多的人看到。