欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android开发中获取系统时间的几种种方式

程序员文章站 2022-07-02 19:54:53
android开发中获取时间的几种种方式 一.使用calendar获取系统时间 calendar获取系统时间首先要用calendar.getinstance()函数获取一...

android开发中获取时间的几种种方式

一.使用calendar获取系统时间

calendar获取系统时间首先要用calendar.getinstance()函数获取一个实例,再为该实例设定时区(中国的时区为gmt+8:00),最后使用calendar.get()函数获取时间的具体信息,如年,月,日,小时,分,秒,星期几。缺点是获得的这些时间信息都是独立的,如果要一起显示的话,还要组装起来凑成一个字符串,稍显麻烦。不过如果只需要单个时间信息,如星期几,这种方法是比较方便的。并且可以根据calendar.ampm属性判断当前是am还是pm(0为am,1为pm),然后根据需要显示12小时或24小时的时间。或者直接获得calendar.hourof_day显示24小时的时间。

  • 代码

/*

* 使用calendar获取系统时间

*/

calendar calendars;

private void gettime4() {

calendars = calendar.getinstance();

calendars.settimezone(timezone.gettimezone("gmt+8:00"));

 

string year = string.valueof(calendars.get(calendar.year));

string month = string.valueof(calendars.get(calendar.month));

string day = string.valueof(calendars.get(calendar.date));

string hour = string.valueof(calendars.get(calendar.hour));

string min = string.valueof(calendars.get(calendar.minute));

string second = string.valueof(calendars.get(calendar.second));

boolean isam = calendars.get(calendar.am_pm)==1 ? true:false;

boolean is24 = dateformat.is24hourformat(getapplication()) ?true:false;

 

log.i("md", " 年:"+year+" 月: "+month+" 日:"+day+" 时: "+hour+" 分: "+min+" 秒: "+second +" 是上午吗? "+isam+" 是24小时制吗? "+is24);

}

打印


二.使用date获取系统时间

date方法比较简单,只需要一条语句:date().tolocalestring(),就可以获得整个的时间信息,并且格式规范,不用再组装,可以直接显示。缺点是如果想用另外一种格式显示,或者只需要单个的时间信息,就比较麻烦。可以定义simpledateformat,规定哪些信息显示,哪些信息不显示,如显示年、月、日、小时、分钟、星期几,可以定义下面的simpledateformat:

01-01 03:18:24.326: i/md(17508): 年:2015 月: 0 日:1 时: 3 分: 18 秒: 24 是上午吗? false 是24小时制吗? true

代码

date date = new date();

string time = date.tolocalestring();

log.i("md", "时间time为: "+time);

simpledateformat dateformat = new simpledateformat("yyyy年-mm月dd日-hh时mm分ss秒 e");

string sim = dateformat.format(date);

log.i("md", "时间sim为: "+sim);

打印


三.使用currenttimemills获取系统时间

1秒=1000毫秒(ms) 1毫秒=1/1,000秒(s)1秒=1,000,000 微秒(μs) 1微秒=1/1,000,000秒(s)1秒=1,000,000,000 纳秒(ns) 1纳秒=1/1,000,000,000秒(s)1秒=1,000,000,000,000 皮秒(ps) 1皮秒=1/1,000,000,000,000秒(s)1小时=60分钟=3600秒

01-01 03:31:31.458: i/md(18530): 时间time为: jan 1, 2015 3:31:31 am

01-01 03:31:31.459: i/md(18530): 时间sim为: 2015年-01月01日-03时31分31秒 thu

代码

long currenttime = system.currenttimemillis();

simpledateformat formatter = new simpledateformat("yyyy年-mm月dd日-hh时mm分ss秒");

date date = new date(totalmillisecounds);

string sim = formatter.format(date);

log.i("md", "当前时间:" +sim);

打印

拓展

在开发过程中,通常很多人都习惯使用new date()来获取当前时间。new date()所做的事情其实就是调用了system.currenttimemillis()。如果仅仅是需要或者毫秒数,那么完全可以使用system.currenttimemillis()去代替new date(),效率上会高一点。如果需要在同一个方法里面多次使用new date(),通常性能就是这样一点一点地消耗掉,这里其实可以声明一个引用。1分钟=60秒

01-01 03:18:24.316: i/md(17508): 当前时间:2015年-01月01日-03时18分24秒

代码

//获得系统的时间,单位为毫秒,转换为妙

long totalmilliseconds = system.currenttimemillis();

 

dateformat dateformatterchina = dateformat.getdatetimeinstance(dateformat.medium,dateformat.medium);//格式化输出

timezone timezonechina = timezone.gettimezone("asia/shanghai");//获取时区 这句加上,很关键。

dateformatterchina.settimezone(timezonechina);//设置系统时区

long totalseconds = totalmilliseconds / 1000;

 

//求出现在的秒

long currentsecond = totalseconds % 60;

 

//求出现在的分

long totalminutes = totalseconds / 60;

long currentminute = totalminutes % 60;

 

//求出现在的小时

long totalhour = totalminutes / 60;

long currenthour = totalhour % 24;

 

log.i("md", "小时:"+currenthour+" 分钟: "+currentminute+" 秒 :"+currentsecond);

打印的小时是错误的,应该是时区问题,暂时不知道该怎么处理;