這篇文章主要介紹Android如何獲取當(dāng)前系統(tǒng)日期和時(shí)間,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
專注于為中小企業(yè)提供成都做網(wǎng)站、網(wǎng)站建設(shè)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)聊城免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了成百上千企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");// HH:mm:ss //獲取當(dāng)前時(shí)間 Date date = new Date(System.currentTimeMillis()); time1.setText("Date獲取當(dāng)前日期時(shí)間"+simpleDateFormat.format(date));
第二種方法
Calendar calendar = Calendar.getInstance(); //獲取系統(tǒng)的日期 //年 int year = calendar.get(Calendar.YEAR); //月 int month = calendar.get(Calendar.MONTH)+1; //日 int day = calendar.get(Calendar.DAY_OF_MONTH); //獲取系統(tǒng)時(shí)間 //小時(shí) int hour = calendar.get(Calendar.HOUR_OF_DAY); //分鐘 int minute = calendar.get(Calendar.MINUTE); //秒 int second = calendar.get(Calendar.SECOND); time2.setText("Calendar獲取當(dāng)前日期"+year+"年"+month+"月"+day+"日"+hour+":"+minute+":"+second);
第三種方法
Time t=new Time(); // or Time t=new Time("GMT+8"); 加上Time Zone資料。 t.setToNow(); // 取得系統(tǒng)時(shí)間。 int year = t.year; int month = t.month+1; int day = t.monthDay; int hour = t.hour; // 0-23 int minute = t.minute; int second = t.second; time3.setText("Calendar獲取當(dāng)前日期"+year+"年"+month+"月"+day+"日"+hour+":"+minute+":"+second);
細(xì)心的可能發(fā)現(xiàn)月份要加上1,這個(gè)是因?yàn)槭?開始計(jì)算的,所以用時(shí)要加上1。第一次接觸Android的可能最后一個(gè)看不懂,time1,time2 ,time3是TextView的對象記得用時(shí)需要初始化下
TextView time1 = (TextView) findViewById(R.id.tv_time1); TextView time2 = (TextView) findViewById(R.id.tv_time2); TextView time3 = (TextView) findViewById(R.id.tv_time3);
準(zhǔn)備發(fā)表還在考慮xml到底給你們貼出來不,還是貼上一個(gè)吧
<TextView android:id="@+id/tv_time1" android:layout_width="match_parent" android:layout_height="60dp" android:gravity="center" android:text="時(shí)間"/>
最后我運(yùn)行到模擬器上了三種方法都可以,看個(gè)人習(xí)慣使用!
以上是Android如何獲取當(dāng)前系統(tǒng)日期和時(shí)間的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站標(biāo)題:Android如何獲取當(dāng)前系統(tǒng)日期和時(shí)間
路徑分享:http://aaarwkj.com/article42/gjcehc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站策劃、標(biāo)簽優(yōu)化、網(wǎng)站導(dǎo)航、動(dòng)態(tài)網(wǎng)站、企業(yè)網(wǎng)站制作、云服務(wù)器
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)