Java Date Time - OffsetDateTime get(TemporalField field) example








OffsetDateTime get(TemporalField field) gets the value of the specified field from this date-time 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.OffsetDateTime;
import java.time.temporal.ChronoField;
/*from  www  .  ja  va 2s . c om*/
public class Main {
  public static void main(String[] args) {
    OffsetDateTime o = OffsetDateTime.now();
    int l = o.get(ChronoField.DAY_OF_WEEK);
    System.out.println(l);
  }
}

The code above generates the following result.