如何在Java中获得两个即时时间戳之间的持续时间

让我们首先ofEpochSeconds()使用从1970-01-01T00:00:00Z的纪元开始的秒数来设置两个Instant方法。

现在获取上述两个即时之间的持续时间:

Duration res = Duration.between(one, two);

示例

import java.time.Duration;

import java.time.Instant;

public class Demo {

   public static void main(String[] args) {

      Instant one = Instant.ofEpochSecond(1845836728);

      Instant two = Instant.ofEpochSecond(1845866935);

      Duration res = Duration.between(one, two);

      System.out.println(res);

   }

}

输出结果

PT8H23M27S

以上是 如何在Java中获得两个即时时间戳之间的持续时间 的全部内容, 来源链接: utcz.com/z/354264.html

回到顶部