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


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


Java中OffsetDateTime类的from()方法从时间对象获取OffsetDateTime的实例。

用法:

public static OffsetDateTime from(TemporalAccessor temporal)

参数:此方法接受一个指定了要转换的时间对象的时间参数,而不是null。


返回值:它返回本地日期,而不是null。

异常:该函数抛出DateTimeException,即它无法转换为OffsetDateTime。

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

示例1:

// Java program to demonstrate the from() method 
  
import java.time.OffsetDateTime; 
import java.time.ZonedDateTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Function used 
        OffsetDateTime date = OffsetDateTime.from(ZonedDateTime.now()); 
  
        // Prints the date 
        System.out.println(date); 
    } 
}
输出:
2018-12-12T08:24:12.442Z

程序2

// Java program to demonstrate the from() method 
  
import java.time.OffsetDateTime; 
import java.time.ZonedDateTime; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // Function used 
        OffsetDateTime date = OffsetDateTime.from(ZonedDateTime.now()); 
  
        // Prints the date 
        System.out.println(date); 
    } 
}
输出:
2018-12-12T08:24:15.077Z

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



相关用法


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