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


Java Instant atZone()用法及代码示例


Instant类的atZone(ZoneId zone)方法用于将此瞬间与时区结合在一起,该时区的ZoneId作为参数来创建ZonedDateTime对象。此方法将ZoneId作为参数,并在操作返回ZonedDateTime对象之后将此时区与该瞬间组合在一起。如果瞬间过大而无法适合日期区域时间,则此方法将引发异常。此方法与ZonedDateTime.ofInstant(this,zone)相同。

用法:

public ZonedDateTime atZone(ZoneId zone)

参数:此方法接受一个参数区域,该区域是要组合到此即时对象的区域。它不能为空。


返回值:此方法返回ZonedDateTime,它是Instant的当前区域和作为参数传递的区域的组合。

异常:如果瞬间过大而无法放入分区的日期时间,则此方法将引发DateTimeException。

以下示例程序旨在说明Instant.atZone()方法:

示例1:

// Java program to demonstrate 
// Instant.atZone() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an instance object 
        Instant instant 
            = Instant.parse("2018-10-20T16:55:30.00Z"); 
  
        // print Instant Value 
        System.out.println("Instant: "
                           + instant); 
  
        // create ZoneId object 
        ZoneId zone = ZoneId.of("Europe/Paris"); 
  
        // apply atZone method of Instant class 
        ZonedDateTime result = instant.atZone(zone); 
  
        // print results 
        System.out.println("ZonedDateTime: "
                           + result); 
    } 
}
输出:
Instant: 2018-10-20T16:55:30Z
ZonedDateTime: 2018-10-20T18:55:30+02:00[Europe/Paris]

示例2:

// Java program to demonstrate 
// Instant.atZone() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an instance object 
        Instant instant 
            = Instant.parse("2018-11-18T06:55:30.00Z"); 
  
        // print Instant Value 
        System.out.println("Instant: "
                           + instant); 
  
        // create ZoneId object 
        ZoneId zone = ZoneId.of("Asia/Aden"); 
  
        // apply atZone method 
        ZonedDateTime result 
            = instant.atZone(zone); 
  
        // print results 
        System.out.println("ZonedDateTime: "
                           + result); 
    } 
}
输出:
Instant: 2018-11-18T06:55:30Z
ZonedDateTime: 2018-11-18T09:55:30+03:00[Asia/Aden]

示例3:

// Java program to demonstrate 
// Instant.atZone() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an instance object 
        Instant instant 
            = Instant.now(); 
  
        // print Instant Value 
        System.out.println("Instant: "
                           + instant); 
  
        // create ZoneId object 
        ZoneId zone = ZoneId.of("Pacific/Midway"); 
  
        // apply atZone method 
        ZonedDateTime result 
            = instant.atZone(zone); 
  
        // print results 
        System.out.println("ZonedDateTime: "
                           + result); 
    } 
}
输出:
Instant: 2018-11-22T08:11:48.029Z
ZonedDateTime: 2018-11-21T21:11:48.029-11:00[Pacific/Midway]

参考文献: https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#atZone(java.time.ZoneId)



相关用法


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