android 手机系统日期及时间的读取

一、这个很简单,作下记录而已

1、程序

Calendar c = Calendar.getInstance();


time1 = c.get(Calendar.YEAR);
time2 = c.get(Calendar.MONTH);
time3 = c.get(Calendar.DAY_OF_MONTH);
time4 = c.get(Calendar.HOUR_OF_DAY);
time5 = c.get(Calendar.MINUTE);

tim1-time5,就是读出来的年、月、日、小时、分钟,还可以读取周、秒等,也是用c.get(Calendar.你要读的东东)

结语:这个可以用来单方面读出系统当前日期与时间用。

注:系统中的月份是从0开始的,还有周也是从0开始,所以正常情况下我们要进行加1,处理



免费源码下载:http://www.yxwojia.com/sort-3105990-1.html

你可能感兴趣的:(Android,读取系统日期与时间)