當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java LocalTime ofInstant()用法及代碼示例


LocalTime類的ofInstant()方法用於從Instant和作為參數傳遞的區域ID獲取LocalTime的實例。在此方法中,首先,使用區域ID和Instant獲取與UTC /Greenwich的偏移量。然後,從時刻和偏移量計算出本地時間。

用法:

public static LocalTime 
       ofInstant(Instant instant, ZoneId zone)

參數:此方法接受兩個參數:


  • instant:這是從中創建LocalTime對象的瞬間。它不能為空。
  • zone:這是指定時間的區域。它不能為空。

返回值:此方法返回從傳遞的即時創建的創建的LocalTime對象。

以下示例程序旨在說明ofInstant()方法:

示例1:

// Java program to demonstrate 
// LocalTime.ofInstant() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an Instant object 
        Instant instant 
            = Instant.parse("2018-12-17T19:59:44.770Z"); 
  
        // print Instant 
        System.out.println("Instant: " + instant); 
  
        // create ZoneId 
        ZoneId zoneid = ZoneId.systemDefault(); 
  
        // print ZoneId 
        System.out.println("ZoneId: " + zoneid); 
  
        // apply ofInstant() 
        LocalTime value 
            = LocalTime.ofInstant(instant, zoneid); 
  
        // print result 
        System.out.println("Generated LocalTime: "
                           + value); 
    } 
}

輸出:

Instant: 2018-12-17T19:59:44.770Z
ZoneId: Etc/UTC
Generated LocalTime: 19:59:44.770

示例2:

// Java program to demonstrate 
// LocalTime.ofInstant() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an Instant object 
        Instant instant 
            = Instant.parse("2016-11-11T09:19:22Z"); 
  
        // print Instant 
        System.out.println("Instant: " + instant); 
  
        // apply ofInstant() 
        LocalTime value 
            = LocalTime.ofInstant(instant, 
                                  ZoneId.of("Asia/Dhaka")); 
  
        // print result 
        System.out.println("Generated LocalTime: "
                           + value); 
    } 
}

輸出:

Instant: 2016-11-11T09:19:22Z
Generated LocalTime: 15:19:22

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#ofInstant(java.time.Instant, java.time.ZoneId)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 LocalTime ofInstant() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。