Java Date Time - LocalDate getLong(TemporalField field) example








LocalDate getLong(TemporalField field) gets the value of the specified field from this date 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.temporal.ChronoField;
// w  ww .  j  a v  a  2  s. co  m
public class Main {
  public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);

    System.out.println(a.getLong(ChronoField.DAY_OF_YEAR));
  }
}

The code above generates the following result.