概述
用Time获取系统当前时间时会出现警告:
The type Time is deprecated,
The method setToNow() from the type Time is deprecated,
The method format2445() from the type Time is deprecated;
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过时所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复