Java Date Time - ZonedDateTime getLong(TemporalField field) example








ZonedDateTime getLong(TemporalField field) gets the value of the specified field from this date-time 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.ZonedDateTime;
import java.time.temporal.ChronoField;
//  w  w  w .j  a  v  a2s.  c om
public class Main {
  public static void main(String[] args) {
    ZonedDateTime dateTime =ZonedDateTime.now();

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

The code above generates the following result.