我是靠谱客的博主 糊涂小蚂蚁,最近开发中收集的这篇文章主要介绍获取系统当前时间,Time过时,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

用Time获取系统当前时间时会出现警告:

The type Time is deprecated,

The method setToNow() from the type Time is deprecated,

The method format2445() from the type Time is deprecated;


解决方案之一就是使用java.util.GregorianCalendar类来代替android.text.format.Time类。

GregorianCalendar calendar;  
calendar = new GregorianCalendar();   
SimpleDateFormat dateFormat;  
dateFormat = new SimpleDateFormat("y年M月d日 H时m分s秒", Locale.CHINA); 

System.out.println("年" + "------" + calendar.get(Calendar.YEAR));
System.out.println("月" + "------" + calendar.get(Calendar.MONTH));
System.out.println("日" + "------" + calendar.get(Calendar.DATE));
System.out.println("时" + "------" + calendar.get(Calendar.HOUR_OF_DAY));
System.out.println("分" + "------" + calendar.get(Calendar.MINUTE));


但要注意一下,月份在Calendar中是从0开始的,也就是说1月份的值为0,因此需要加1才是现实中表示的月份。

最后

以上就是糊涂小蚂蚁为你收集整理的获取系统当前时间,Time过时的全部内容,希望文章能够帮你解决获取系统当前时间,Time过时所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部