简单认识Calendar类
2022/7/20 23:23:59
本文主要是介绍简单认识Calendar类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Calendar类是一个抽象类,在实际使用时实现特定的子类的对象,创建对象的过程对程序员来说是透明的,只需要使用getInstance方法创建即可。
Calendar calendar = Calendar.getInstance(); //没设置时默认是当前日期 SimpleDateFormat format1 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); System.out.println(format1.format(calendar.getTime()));
// 获得年份 int year = calendar.get(Calendar.YEAR); // 获得月份 int month = calendar.get(Calendar.MONTH) + 1; // 获得日期 int date = calendar.get(Calendar.DATE); int date2 = calendar.get(Calendar.DAY_OF_MONTH); // 获得小时 hour是12小时制 hour2是24小时制 int hour = calendar.get(Calendar.HOUR); int hour2 = calendar.get(Calendar.HOUR_OF_DAY); // 获得分钟 int minute = calendar.get(Calendar.MINUTE); // 获得秒 int second = calendar.get(Calendar.SECOND); // 获得星期几(注意(这个与Date类是不同的):1代表星期日、2代表星期1、3代表星期二,以此类推) int day = calendar.get(Calendar.DAY_OF_WEEK);
这篇关于简单认识Calendar类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享