這篇文章給大家分享的是有關Java怎么獲取指定毫秒數(shù)的方式并將其轉為時間格式的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
灤南網(wǎng)站建設公司創(chuàng)新互聯(lián),灤南網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為灤南上1000+提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設要多少錢,請找那個售后服務好的灤南做網(wǎng)站的公司定做!
有以下兩種方法獲取指定時間的毫秒值:
1.Calendar類
先由getInstance獲取Calendar對象,然后用clear方法將時間重置為(1970.1.1 00:00:00),接下來用set方法設定指定時間,最后用getTimeMillis獲取毫秒值。
public class Time{ public static void main(String[] args){ Calendar calendar = Calendar.getInstance(); calendar.clear(); calendar.set(2018,0,1); long millis = calendar.getTimeInMillis(); //輸出獲取的毫秒數(shù) Systeam.out.print(millis); //將其毫秒數(shù)轉為日期類型 DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); calendar.setTimeInMillis(millis); System.out.println(millis + " = " + formatter.format(calendar.getTime())); } }
2.java.util.Date類+SimpleDateFormat類
先由時間格式創(chuàng)建SimpleDateFormat對象,然后通過parse方法由指定時間創(chuàng)建Date對象,最后由Date對象的getTime方法獲取毫秒值。
public class Time{ public static void main(String[] args){ SimpleDateFormat sd = new SimpleDateFormat("yyyy-mm-dd"); Date date = null; try { date = format.parse("2018-01-01"); } catch (ParseException e) { // TODO 自動生成的 catch 塊 e.printStackTrace(); } long millis = date.getTime(); Systeam.out.print(millis); //將其毫秒數(shù)轉為日期類型 Date date=new Date(millis); System.out.println(sd.format(date)); } }
相比而言顯然第一種方法更好:只用建立一個對象,就可以反復設定時間,獲取毫秒值。第二種方法至少要創(chuàng)建兩個對象,而且每設定一個時間都要創(chuàng)建一個新的Date對象,僅作了解。
感謝各位的閱讀!關于Java怎么獲取指定毫秒數(shù)的方式并將其轉為時間格式就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!