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


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


Java中OffsetDateTime类的getLong()方法从该日期时间中获取long形式的指定字段的值。

用法:

public long getLong(TemporalField field)

参数:此方法接受一个参数字段,该字段指定要获取的字段,而不是null。


返回值:它返回该字段的值。

异常:该函数引发以下三个异常:

  • DateTimeException:如果无法获得该字段的值或该值超出该字段的有效值范围,则抛出该错误。
  • UnsupportedTemporalTypeException:如果不支持该字段或值的范围超过一长整数,则抛出该错误。
  • ArithmeticException:如果发生数字溢出则抛出

以下示例程序旨在说明getLong()方法:

示例1:

// Java program to demonstrate the getLong() method 
import java.time.OffsetDateTime; 
import java.time.temporal.ChronoField; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // parses a date 
        OffsetDateTime date = OffsetDateTime.parse("2018-12-03T12:30:30+01:00"); 
  
        // Prints the value of the specified 
        // field from this date-time as an long. 
        System.out.println(date.getLong(ChronoField.CLOCK_HOUR_OF_DAY)); 
    } 
}
输出:
12

程序2

// Java program to demonstrate the getDayOfYear() method 
// exceptions 
  
import java.time.OffsetDateTime; 
import java.time.temporal.ChronoField; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        try { 
            // parses a date 
            OffsetDateTime date = OffsetDateTime.parse("2018-24-03T12:30:30+01:00"); 
  
            // Prints the value of the specified 
            // field from this date-time as an long. 
            System.out.println(date.getLong(ChronoField.CLOCK_HOUR_OF_DAY)); 
        } 
        catch (Exception e) { 
            System.out.println(e); 
        } 
    } 
}
输出:
java.time.format.DateTimeParseException: 
Text '2018-24-03T12:30:30+01:00' could not be parsed: 
Invalid value for MonthOfYear (valid values 1 - 12): 24

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



相关用法


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