当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java OffsetDateTime get()用法及代码示例


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

参考: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#get-java.time.temporal.TemporalField-



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 OffsetDateTime get() method in Java with examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。