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

Android开发之获取系统当前时间的方法

程序员文章站 2022-05-27 08:17:52
获取当前时间 system.currenttimemillis()//获取当前时间(毫秒,long型) 将时间转为特定格式 date date = new date(system.currentti...

获取当前时间

system.currenttimemillis()//获取当前时间(毫秒,long型)

将时间转为特定格式

date date = new date(system.currenttimemillis());

simpledateformat dateformat = new simpledateformat("yyyymmddhhmmss");

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

//或 simpledateformat dateformat = new simpledateformat("yyyy年mm月dd日 hh:mm:ss");

string curtime =dateformat.format(date);//将时间转换为固定格式(年月日时分秒)