您好,登錄后才能下訂單哦!
這篇文章主要介紹Android如何獲取當(dāng)前系統(tǒng)日期和時間,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");// HH:mm:ss //獲取當(dāng)前時間 Date date = new Date(System.currentTimeMillis()); time1.setText("Date獲取當(dāng)前日期時間"+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)時間 //小時 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)時間。 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,這個是因為是0開始計算的,所以用時要加上1。第一次接觸Android的可能最后一個看不懂,time1,time2 ,time3是TextView的對象記得用時需要初始化下
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到底給你們貼出來不,還是貼上一個吧
<TextView android:id="@+id/tv_time1" android:layout_width="match_parent" android:layout_height="60dp" android:gravity="center" android:text="時間"/>
最后我運行到模擬器上了三種方法都可以,看個人習(xí)慣使用!
以上是Android如何獲取當(dāng)前系統(tǒng)日期和時間的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(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)容。