📜  Java中的即时 atZone() 方法和示例

📅  最后修改于: 2022-05-13 01:55:37.759000             🧑  作者: Mango

Java中的即时 atZone() 方法和示例

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

句法:

public ZonedDateTime atZone(ZoneId zone)

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

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

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

下面的程序说明了 Instant.atZone() 方法:

方案一:

// 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]

方案二:

// 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: Java Java.time.ZoneId)