Java Date Time - Month getLong(TemporalField field) example








Month getLong(TemporalField field) gets the value of the specified field from this month-of-year as a long.

Syntax

getLong has the following syntax.

public long getLong(TemporalField field)

Example

The following example shows how to use getLong.

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

  }
}

The code above generates the following result.