Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android--獲取系統時間的方式介紹

Android--獲取系統時間的方式介紹

編輯:關於Android編程

方式一:

 

import   java.text.SimpleDateFormat;    
  SimpleDateFormat   formatter   =   new   SimpleDateFormat   ("yyyy年MM月dd日   HH:mm:ss");   
  Date curDate =  new Date(System.currentTimeMillis());
//獲取當前時間   
  String   str   =   formatter.format(curDate);

方式二:

 

 

取得系統時間
1。
long time=System.currentTimeMillis();
 
2。
final Calendar mCalendar=Calendar.getInstance();
mCalendar.setTimeInMillis(time);
取得小時:mHour=mCalendar.get(Calendar.HOUR);
取得分鐘:mMinuts=mCalendar.get(Calendar.MINUTE);
 
 
3。
Time t=new Time(); // or Time t=new Time("GMT+8"); 加上Time Zone資料
t.setToNow(); // 取得系統時間。
int year = t.year;
int month = t.month;
int date = t.monthDay;
int hour = t.hour;    // 0-23
 
4。
DateFormat df = new SimpleDateFormat("HH:mm:ss");
df.format(new Date());


 

 
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved