- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to get number of quarters between two dates in Java
Let’s say we have the following two dates −
LocalDate.of(2019, 3, 20); LocalDate.of(2019, 10, 25);
To get the number of quarters between the above two dates, use the QUARTER_YEARS −
IsoFields.QUARTER_YEARS.between(LocalDate.of(2019, 3, 20),LocalDate.of(2019, 10, 25));
Example
import java.time.LocalDate; import java.time.temporal.IsoFields; public class Demo { public static void main(String[] args) { long quarters = IsoFields.QUARTER_YEARS.between(LocalDate.of(2019, 3, 20), LocalDate.of(2019, 10, 25)); System.out.println("Quarters between the two dates = " + quarters); } }
Output
Quarters between the two dates = 2
- Related Articles
- How to get the number of seconds between two Dates in JavaScript?
- How to get the number of days between two Dates in JavaScript?
- How do I get the number of days between two dates in JavaScript?
- How to get the difference between two dates in Android?
- How to get the differences between two dates in iOS?
- How to count days between two dates in Java
- Java Program to get milliseconds between dates
- How to get the differences between two dates in Android using Kotlin?
- How to list all dates between two dates in Excel?
- How to find the number of days and number of weeks between two dates in R?
- Finding Number of Days Between Two Dates JavaScript
- C# Program to get the difference between two dates
- How to compare two dates in Java?
- Find the number of logins between two dates in MySQL
- Find number of days between two given dates in C++

Advertisements