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);//将时间转换为固定格式(年月日时分秒)