Friday, November 14, 2025
HomeLanguagesJavaCalendar complete() Method in Java with Examples

Calendar complete() Method in Java with Examples

The complete() method in Calendar class is used to fill any unset fields of the calendar fields. It follows the following process of completion:

  1. At first, if the time value has not been calculated, the computeTime() method is called to calculate it from calendar field values.
  2. Second, to calculate all the calendar field values the computeFields() method is used.

Syntax:

protected void complete()

Parameters: The method does not take any parameters.

Return Value: The method does not return any value.

Below programs illustrate the working of complete() Method of Calendar class:
Example 1:




// Java Code to illustrate
// complete() Method
  
import java.util.*;
  
public class CalendarClassDemo
    extends GregorianCalendar {
    public static void main(String args[])
    {
        // Creating calendar object
        CalendarClassDemo calndr = new CalendarClassDemo();
  
        // Displaying the current date
        System.out.println("The Current "
                           + "date is: " + calndr.getTime());
  
        // Clearing the calendar
        calndr.clear();
  
        // Set a new year and call
        // complete()
        calndr.set(GregorianCalendar.YEAR, 2008);
        calndr.complete();
  
        // Displaying the current date
        System.out.println("The new"
                           + " date is: " + calndr.getTime());
    }
}


Output:

The Current date is: Wed Feb 13 15:39:33 UTC 2019
The new date is: Tue Jan 01 00:00:00 UTC 2008

Example 2:




// Java Code to illustrate
// complete() Method
  
import java.util.*;
  
public class CalendarClassDemo
    extends GregorianCalendar {
    public static void main(String args[])
    {
        // Creating calendar object
        CalendarClassDemo calndr = new CalendarClassDemo();
  
        // Displaying the current date
        System.out.println("The Current "
                           + "date is: " + calndr.getTime());
  
        // Clearing the calendar
        calndr.clear();
  
        // Set a new year and call
        // complete()
        calndr.set(GregorianCalendar.YEAR, 1996);
        calndr.complete();
  
        // Displaying the current date
        System.out.println("The new"
                           + " date is: " + calndr.getTime());
    }
}


Output:

The Current date is: Wed Feb 13 15:39:36 UTC 2019
The new date is: Mon Jan 01 00:00:00 UTC 1996

Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html#complete()

RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7142 POSTS0 COMMENTS
Thapelo Manthata
6837 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS