java.time.ZonedDateTime.getLong(TemporalField field)
方法從此日期時間獲取指定欄位的long
值。
以下是java.time.ZonedDateTime.getLong(TemporalField field)
方法的宣告。
public long getLong(TemporalField field)
field
- 要獲取的欄位,而不是null
。該欄位的值。
DateTimeException
- 如果無法獲取該欄位的值或該值超出該欄位的有效值範圍。UnsupportedTemporalTypeException
- 如果不支援該欄位或值的範圍超過long。ArithmeticException
- 如果發生數位溢位以下範例顯示了java.time.ZonedDateTime.getLong(TemporalField field)
方法的用法。
package com.yiibai;
import java.time.ZonedDateTime;
import java.time.temporal.ChronoField;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
System.out.println(date.getLong(ChronoField.CLOCK_HOUR_OF_DAY));
}
}
編譯並執行上面的程式,這將產生以下結果 -
12