Java Date Time - ZoneOffset getLong(TemporalField field) example








ZoneOffset getLong(TemporalField field) gets the value of the specified field from this offset 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.ZoneOffset;
import java.time.temporal.ChronoField;
/*  w  w  w  .j a  va 2s  .co  m*/
public class Main {
  public static void main(String[] args) {
    ZoneOffset z = ZoneOffset.UTC;
    long t = z.getLong(ChronoField.OFFSET_SECONDS);
    System.out.println(t);
  }
}

The code above generates the following result.