Thursday, June 11, 2026
HomeLanguagesJavaLocalDateTime getMonthValue() method in Java with Examples

LocalDateTime getMonthValue() method in Java with Examples

The getMonthValue() method of LocalDateTime class is used to return the month-of-year field. This method returns the month from LocalDateTime as an int from 1 to 12.

Syntax:

public int getMonthValue()

Parameter: This method does not accept any parameter.

Returns: This method returns integer value which is the month-of-year field and it ranges from 1 to 12.

Below programs illustrate the LocalDateTime.getMonthValue() method:

Program 1:




// Java program to demonstrate
// LocalDateTime.getMonthValue() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalDateTime Object
        LocalDateTime local
            = LocalDateTime.parse("2018-10-23T22:29:10");
  
        // get Month value field
        int monthvalue = local.getMonthValue();
  
        // print result
        System.out.println("Month Value: "
                           + monthvalue);
    }
}


Output:

Month Value: 10

Program 2:




// Java program to demonstrate
// LocalDateTime.getMonthValue() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalDateTime Object
        LocalDateTime local
            = LocalDateTime.parse("2018-12-13T12:28:13");
  
        // get Month value field
        int monthvalue = local.getMonthValue();
  
        // print result
        System.out.println("Month Value: "
                           + monthvalue);
    }
}


Output:

Month Value: 12

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS