search
HomeJavajavaTutorialIntroduction to the use of Calendar class in Java
Introduction to the use of Calendar class in JavaOct 12, 2017 am 10:31 AM
calendarjavaintroduce

This article mainly introduces the usage of Calendar class in Java, and analyzes the functions, method functions and related usage skills of Calendar class in detail in the form of examples. Friends in need can refer to the following

The examples of this article are described Learn how to use the Calendar class in java. Share it with everyone for your reference, the details are as follows:

Calendar in Java is often ignored during development. This blog summarizes this class, which will be helpful when using periods in subsequent projects.

The role of Calendar constant (field)


##

Calendar cal = Calendar.getInstance();
cal.get(Calendar.DATE);//-----------------------当天 1-31
cal.get(Calendar.DAY_OF_MONTH);//---------------当天 1-31
cal.get(Calendar.DAY_OF_WEEK);//----------------从星期天开始计算,如果今天星期二,那么返回3
cal.get(Calendar.DAY_OF_YEAR);//----------------
cal.get(Calendar.HOUR);//-----------------------12小时制
cal.get(Calendar.HOUR_OF_DAY);//----------------24小时制,一般使用这个属性赋值
cal.get(Calendar.MILLISECOND);//----------------
cal.get(Calendar.MINUTE);//---------------------
cal.get(Calendar.SECOND);//---------------------
cal.get(Calendar.WEEK_OF_MONTH);//--------------
cal.get(Calendar.WEEK_OF_YEAR);//---------------
cal.get(Calendar.MONTH);//-----------------------月份获取需要 +1,那么,赋值时需要 -1

Summary:

1) The real meaning of constants is as above. We generally use these constants for assignment. In other words, we can get the value through it and also perform corresponding assignment through it.

2) When assigning values, week and month are very different. It is worth noting that setFirstDayOfWeek needs to be specified for week, however, month needs to be added or subtracted by 1
3) When assigning values, we generally use year, month, day, hour, minute and second

Calendar.YEAR, Calendar .MONTH, Calendar.DAY_OF_MONTH, Calendar.HOUR_OF_DAY, Calendar.MINUTE, Calendar.SECOND

Main assignment statement


cal.set(Calendar.XXX, VVVV);//--------------------- 对以上每个字段(field)进行赋值,代码重复较大
cal.set(year,month,date,hour,minute,second);//----- 分别对字段(field)进行赋值,效率高

Main calculation


cal1.roll(Calendar.MONTH,3);//---------------------- 一般不使用,原因是该方法只在一个月里面循环计算,其大小不会超过该月最值
cal1.add(Calendar.YEAR,-1);//----------------------- 使用 XX_OF_XX 的field进行加减计算效果更佳,而且计算准确
cal1.add(field,value);//----------------------------

Summary:

1) Regarding the calculation of roll, cal.roll(Calendar.DAY_OF_MONTH, 32); Although 32 has exceeded the maximum possible 31, cal In fact, it will not exceed the month. Instead, after subtracting the number of days in the month from 32, the remaining days will be recalculated;

2) Regarding the calculation of add, cal1.add(Calendar.MONTH, 1); If the current is 8-31, then, if you add one month, it will be 9-30. This is the real accuracy

Main value statement


cal.getMaximum(Calendar.DATE);
cal.get(Calendar.DATE);
cal.getMinimum(Calendar.DATE);
cal.setTimeInMillis(cal.getTime().getTime());
cal.setTimeInMillis(new Date().getTime());

Summary:

1) Obtaining the maximum value and the minimum value are very common methods

2) After obtaining the milliseconds, you can pass 1000 *60*60 Calculation

Calendar Gets the day\month\week


// 当天
public String getThisToday(){
  SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  Calendar cal = Calendar.getInstance();
  cal.set(Calendar.HOUR_OF_DAY,0);
  cal.set(Calendar.MINUTE, 0);
  cal.set(Calendar.SECOND,0);
  String start = sdf.format(cal.getTime());
  cal.set(Calendar.HOUR_OF_DAY,23);
  cal.set(Calendar.MINUTE, 59);
  cal.set(Calendar.SECOND,59);
  String end = sdf.format(cal.getTime());
  return start+"|"+end;
}
// 本周
public String getThisWeekDate(){
  SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  Calendar ca = Calendar.getInstance();
  ca.setFirstDayOfWeek(Calendar.MONDAY);
  ca.set(Calendar.DAY_OF_WEEK,Calendar.SUNDAY);
  ca.set(ca.get(Calendar.YEAR), ca.get(Calendar.MONTH),ca.get(Calendar.DATE),23,59,59);
  String end = sdf.format(ca.getTime());
  ca.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
  ca.set(Calendar.HOUR_OF_DAY,0);
  ca.set(Calendar.MINUTE, 0);
  ca.set(Calendar.SECOND,0);
  String start = sdf.format(ca.getTime());
  return start+"|"+end;
}
//本月日期段
public String getThisMonthDate(){
  SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  Calendar cc2 = Calendar.getInstance();
  int maxMonthDay = cc2.getActualMaximum(Calendar.DAY_OF_MONTH);
  cc2.set(cc2.get(Calendar.YEAR), cc2.get(Calendar.MONTH),maxMonthDay,23,59,59);
  String end = sdf.format(cc2.getTime());
  cc2.set(cc2.get(Calendar.YEAR), cc2.get(Calendar.MONTH),1,0,0,0);
  String start = sdf.format(cc2.getTime());
  return start+"|"+end;
}

The above is the detailed content of Introduction to the use of Calendar class in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java利用Calendar类的get()函数获取日期和时间信息Java利用Calendar类的get()函数获取日期和时间信息Jul 24, 2023 am 09:40 AM

Java利用Calendar类的get()函数获取日期和时间信息在Java编程中,我们经常需要获取当前的日期和时间信息。Java提供了许多类和方法来处理日期和时间,其中Calendar类是常用的一个类之一。Calendar类提供了许多方法来处理日期和时间的操作,包括获取日期和时间的各个部分信息。在Calendar类中,我们可以使用get()方法来获取日期和时

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)