Java Date Time - Month get(TemporalField field) example








Month get(TemporalField field) gets the value of the specified field from this month-of-year as an int.

Syntax

get has the following syntax.

public int get(TemporalField field)

Example

The following example shows how to use get.

import java.time.LocalDate;
import java.time.Month;
import java.time.temporal.ChronoField;
/*from  ww  w. java2 s .  c  om*/
public class Main {
  public static void main(String[] args) {
    Month m = Month.from(LocalDate.now());
    
    System.out.println(m.get(ChronoField.MONTH_OF_YEAR));

  }
}

The code above generates the following result.