java.time.OffsetDateTime.getLong() 方法示例



描述

java.time.OffsetDateTime.getLong(TemporalField field) 方法以 long 的形式从该日期时间获取指定字段的值。

声明

以下是 java.time.OffsetDateTime.getLong(TemporalField field) 方法的声明。

public long getLong(TemporalField field)

参数

field − 要获取的字段,不能为空。

返回值

字段的值。

异常

  • DateTimeException − 如果无法获取字段的值或该值超出字段有效值范围。

  • UnsupportedTemporalTypeException − 如果不支持该字段或值范围超出 long。

  • ArithmeticException − 如果发生数值溢出

示例

以下示例演示了 java.time.OffsetDateTime.getLong(TemporalField field) 方法的用法。

package com.tutorialspoint;

import java.time.OffsetDateTime;
import java.time.temporal.ChronoField;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {
 
      OffsetDateTime date = OffsetDateTime.parse("2017-02-03T12:30:30+01:00");
      System.out.println(date.getLong(ChronoField.CLOCK_HOUR_OF_DAY));  
   }
}

让我们编译并运行上述程序,这会产生以下结果 -

12
广告