Java GregorianCalendar getWeeksInWeekYear() Method



Description

The Java GregorianCalendar getWeeksInWeekYear() method returns the number of weeks in the week year represented by this GregorianCalendar.

Declaration

Following is the declaration for java.util.GregorianCalendar.getWeeksInWeekYear() method

public int getWeeksInWeekYear()

Parameters

NA

Return Value

This method returns the number of weeks in the week year.

Exception

NA

Getting Weeks in Current Dated GregorianCalendar Instance Example

The following example shows the usage of Java GregorianCalendar getWeeksInWeekYear() method. We're creating a GregorianCalendar instance of current date. We're printing the weeks available in a week Year.

package com.tutorialspoint;

import java.util.GregorianCalendar;

public class GregorianCalendarDemo {
   public static void main(String[] args) {

      // create a new calendar
      GregorianCalendar cal = (GregorianCalendar) GregorianCalendar.getInstance();

      // print the current date and time
      System.out.println("" + cal.getTime());

      // get weeks available in the YEAR
      System.out.println(cal.getWeeksInWeekYear());
   }
}

Output

Let us compile and run the above program, this will produce the following result −

Mon Apr 29 12:52:41 IST 2024
52

Getting Weeks in Future Dated GregorianCalendar Instance Example

The following example shows the usage of Java GregorianCalendar getWeeksInWeekYear() method. We're creating a GregorianCalendar instance of current date. We've added two years to make it future dated Calendar. We're printing the weeks available in a week Year.

package com.tutorialspoint;

import java.util.GregorianCalendar;

public class GregorianCalendarDemo {
   public static void main(String[] args) {

      // create a new calendar
      GregorianCalendar cal = (GregorianCalendar) GregorianCalendar.getInstance();

      // print the current date and time
      System.out.println("" + cal.getTime());
	  
      // add 2 years 
      cal.add((GregorianCalendar.YEAR), 2);

      // get weeks available in future YEAR
      System.out.println(cal.getWeeksInWeekYear());
   }
}

Output

Let us compile and run the above program, this will produce the following result −

Mon Apr 29 12:53:04 IST 2024
52

Getting Weeks in Past Dated GregorianCalendar Instance Example

The following example shows the usage of Java GregorianCalendar getWeeksInWeekYear() method. We're creating a GregorianCalendar instance of current date. We've subtracted two years to make it past dated Calendar. We're printing the weeks available in a week Year.

package com.tutorialspoint;

import java.util.GregorianCalendar;

public class GregorianCalendarDemo {
   public static void main(String[] args) {

      // create a new calendar
      GregorianCalendar cal = (GregorianCalendar) GregorianCalendar.getInstance();

      // print the current date and time
      System.out.println("" + cal.getTime());

      // subtract 2 years 
      cal.add((GregorianCalendar.YEAR), -2);

      // get weeks available in the YEAR
      System.out.println(cal.getWeeksInWeekYear());
   }
}

Output

Let us compile and run the above program, this will produce the following result −

Mon Apr 29 12:53:26 IST 2024
53
java_util_gregoriancalendar.htm
Advertisements