Thursday, December 18, 2025
HomeLanguagesJavaLocalDate getMonth() method in Java

LocalDate getMonth() method in Java

The getMonth() method of LocalDate class in Java gets the month-of-year field using the Month enum.

Syntax:

public Month getMonth()

Parameter: This method does not accepts any parameter.

Return Value: The function returns the month of the year.

Below programs illustrate the getMonth() method of LocalDate in Java:
Program 1:




// Program to illustrate the getMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-11-27");
  
        // Prints the day number
        System.out.println(dt.getMonth());
    }
}


Output:

NOVEMBER

Program 2:




// Program to illustrate the getMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-01-02");
  
        // Prints the day number
        System.out.println(dt.getMonth());
    }
}


Output:

JANUARY

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getMonth()

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32455 POSTS0 COMMENTS
Milvus
108 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12035 POSTS0 COMMENTS
Shaida Kate Naidoo
6957 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6910 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS