Java中OffsetDateTime類的get()方法從該日期開始以int形式獲取指定字段的值。
用法:
public int get(TemporalField field)
參數:此方法接受單個參數字段,該字段指定要獲取的字段,而不是null。
返回值:它返回該字段的值。
異常:該函數引發三個異常:
- DateTimeException:如果無法獲得該字段的值或該值超出該字段的有效值範圍,則將引發此錯誤。
- UnsupportedTemporalTypeException:如果不支持該字段或值的範圍超過int,則拋出該異常
- ArithmeticException:如果發生數字溢出,則拋出該異常
以下示例程序旨在說明get()方法:
示例1:
// Java program to demonstrate the get() method
import java.time.OffsetDateTime;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
// Function used
OffsetDateTime date = OffsetDateTime.parse("2017-02-03T12:30:30+01:00");
// Prints the date
System.out.println(date.get(ChronoField.CLOCK_HOUR_OF_DAY));
}
}
輸出:
12
程序2:
// Java program to demonstrate the get() method
// Excetpions
import java.time.OffsetDateTime;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
try {
// Function used
OffsetDateTime date = OffsetDateTime.parse("2017-13-03T12:30:30+01:00");
// Prints the date
System.out.println(date.get(ChronoField.CLOCK_HOUR_OF_DAY));
}
catch (Exception e) {
System.out.println(e);
}
}
}
輸出:
java.time.format.DateTimeParseException: Text '2017-13-03T12:30:30+01:00' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 13
相關用法
- Java OffsetDateTime until()用法及代碼示例
- Java OffsetDateTime from()用法及代碼示例
- Java OffsetDateTime with()用法及代碼示例
- Java OffsetDateTime getMinute()用法及代碼示例
- Java OffsetDateTime getLong()用法及代碼示例
- Java OffsetDateTime getDayOfWeek()用法及代碼示例
- Java OffsetDateTime getHour()用法及代碼示例
- Java OffsetDateTime equals()用法及代碼示例
- Java OffsetDateTime query()用法及代碼示例
- Java OffsetDateTime plusMinutes()用法及代碼示例
- Java OffsetDateTime withHour()用法及代碼示例
- Java OffsetDateTime minusMonths()用法及代碼示例
- Java OffsetDateTime withDayOfMonth()用法及代碼示例
- Java OffsetDateTime withNano()用法及代碼示例
- Java OffsetDateTime getMonth()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 OffsetDateTime get() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。