Open In App

How to Calculate the Week Number of the Year for a Given Date in Java?

Last Updated : 21 Feb, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

In Java, we have the Calendar class and the newer LocalDate class from java.time package. We can use these classes to find which week number of the year for a given date. The java.time package offers better functionality than the older date and time classes such as Calendar class.

In this article, we will learn how to calculate the week number of the year for a given date in Java.

Approaches to Calculate the Week Number of the Year for a Given Date in Java

  • Using LocalDate class(Java 8 and later)
  • Using Calendar class(pre-Java 8)

Program to Calculate the Week Number of the Year for a Given Date in Java

Below is the code implementation of the above two methods with explanations.

Approach 1: Using LocalDate class (Java 8 and later)

Local Date is a newer class introduced in Java 8 which we can use to calculate week numbers. WeekFields.ISO represents the ISO-8601 standard for weeks. We can create a LocalDate instance using the of() method. It enables us to provide custom dates and times.

Java




// Java program to find which week of the year using
// LocalDate class
import java.time.LocalDate;
import java.time.temporal.WeekFields;
  
// Driver Class
public class WeekOfTheYear {
      // Main Function
    public static void main(String[] args)
    {
        // set date //year month day order
        LocalDate givenDate = LocalDate.of(2024, 2, 2);
        
        // get week number
        int weekNumber = givenDate.get(WeekFields.ISO.weekOfWeekBasedYear());
          
          System.out.println("Week of the year: " + weekNumber);
    }
}


Output

Week of the year: 5

Explanation of the above Program:

  • First, we have imported java.time.LocalDate, it is used to represent a specific date without its time-zone and java.time.temporal.WeekFields to access the week fields.
  • Now. we define a class named WeekOfTheYear.
  • Inside the main method, we have created a LocalDate object named givenDate representing a particular specified date LocalDate.of().
  • The givenDate.get(WeekFields.ISO.weekOfWeekBasedYear()) returns an integer which represents current date of the year based on ISO-8601 standard.
  • After that, it prints the week.

Approach 2: Using Calendar Class (Pre-Java 8)

In calendar class, we have used set() method to set a given date.

Java




// Java program to find which week of the year
// Using Calendar class
import java.util.Calendar;
  
// Driver Class
public class WeekOfTheYear {
    // Main Function
    public static void main(String[] args)
    {
        // create instance of Calendar class
        Calendar instance = Calendar.getInstance();
  
        // set the date
        instance.set(2024, Calendar.FEBRUARY, 2);
  
        // get the week of the year
        int weekNumber = instance.get(Calendar.WEEK_OF_YEAR);
        System.out.println("Week of the year: " + weekNumber);
    }
}


Output

Week of the year: 5

Explanation of the above Program:

  • First, we import java.time.LocalDate, it is used to manipulate date and time.
  • Now, we define a class named WeekOfTheYear.
  • Then inside main method, we create an instance of Calendar class using getInstance( ) method.
  • Then we set the date by set( ) method it takes 3 arguments the year, the month and the day of the month.
  • After that we use get( ) method to get the week of the year by passing Calendar.WEEK_OF_YEAR as argument.
  • After that, it prints the week number.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads