Java Date Time - LocalDate getMonthValue() example








LocalDate getMonthValue() gets the month-of-year field from 1 to 12. This method returns the month as an int from 1 to 12.

Syntax

getMonthValue has the following syntax.

public int getMonthValue()

Example

The following example shows how to use getMonthValue.

import java.time.LocalDate;

public class Main {
  public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);

    System.out.println(a.getMonthValue());
  }
}

The code above generates the following result.