android 获取系统时间

Posted mbp_study

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 获取系统时间相关的知识,希望对你有一定的参考价值。

long time=System.currentTimeMillis(); 
final Calendar mCalendar=Calendar.getInstance();  
mCalendar.setTimeInMillis(time);  
取得小时:mHour=mCalendar.get(Calendar.HOUR);  
取得分钟:mMinuts=mCalendar.get(Calendar.MINUTE);  
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  
DateFormat df = new SimpleDateFormat("HH:mm:ss");  
df.format(new Date());  

 

以上是关于android 获取系统时间的主要内容,如果未能解决你的问题,请参考以下文章

Android 使用两个不同的代码片段获取当前位置 NULL

如何从Android片段中的相机获取图像

Android获取片段中的布局高度和宽度

在 Android 片段中获取 Java.Lang.NullPointerException

Android获取各个应用程序的缓存文件代码小片段(使用AIDL)

Android获取片段宽度