Android获取当前时间

Android的文件有建议用Time代替Calendar。用Time对CPU的负荷会较小。在写Widget时特别重要。

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
int minute = t.minute;
int second = t.second;

唯一不足是取出时间只有24小时模式.

========================================================================================

long time=System.currentTimeMillis();
final Calendar mCalendar=Calendar.getInstance();
mCalendar.setTimeInMillis(time);
取得小时:mHour=mCalendar.get(Calendar.HOUR);
取得分钟:mMinuts=mCalendar.get(Calendar.MINUTE);


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);

你可能感兴趣的:(android)