📌  相关文章
📜  Java中的 Instant ofEpochMilli() 方法和示例

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

Java中的 Instant ofEpochMilli() 方法和示例

Instant 类ofEpochMilli()方法有助于使用从 1970-01-01T00:00:00Z 的纪元作为参数传递的毫秒数来获取 Instant。返回的毫秒用于通过转换获得不同的时间单位,如秒等。

句法:

public static Instant 
    ofEpochMilli(long epochMilli)

参数:此方法接受一个参数epochMilli是从 1970-01-01T00:00:00Z 开始的毫秒值。

返回:此方法返回Instant作为从 Epoch 开始的时间,以毫秒为单位。

异常:如果结果超过最大或最小瞬间,此方法将抛出DateTimeException

下面的程序说明了 ofEpochMilli() 方法:

方案一:

// Java program to demonstrate
// Instant.ofEpochMilli() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a long variable for milliseconds
        long milliseconds
            = 999999000;
  
        // get Instant using ofEpochMilli() method
        Instant instant
            = Instant.ofEpochMilli(milliseconds);
  
        // print result
        System.out.println("Instant: "
                           + instant);
    }
}
输出:
Instant: 1970-01-12T13:46:39Z

方案二:

// Java program to demonstrate
// Instant.ofEpochMilli() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // get Instant using ofEpochMilli() method
        // passed epoch millisecond is 73264271044L
        Instant instant
            = Instant.ofEpochMilli(73264271044L);
  
        // print result
        System.out.println("Instant: "
                           + instant);
    }
}
输出:
Instant: 1972-04-27T23:11:11.044Z

参考资料:https: Java/time/Instant.html#ofEpochMilli(long)