之前使用的
Time time = new android.text.format.Time(); time.setToNow(); String timeNow = time.format("%Y%m%d%H%M%S");
来获取当前时间,但是在android22中提示过时 deprecated
然后找了下,实在不知道用哪个好,只好试试这个
Calendar calendar = Calendar.getInstance(); String timeNow = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(calendar.getTime());
还好,暂时没发现问题.
不过刚看到一篇文章
http://tangmingjie2009.iteye.com/blog/1543166
说是用这个方法是最慢的.最快的是
System.currentTimeMillis()
到底是不是呢?懒得试了
Android获取当前时间的android.text.format.Time已过时
原文地址:http://qq445493481.blog.51cto.com/9545543/1792561