java.time.ZonedDateTime.until() 方法示例



说明

java.time.ZonedDateTime.until(Temporal endExclusive, TemporalUnit unit) 方法计算到另一个日期时间的持续时间(以指定单位表示)。

声明

以下是 java.time.ZonedDateTime.until(Temporal endExclusive, TemporalUnit unit) 方法的声明。

public long until(Temporal endExclusive, TemporalUnit unit)

```java

  • 参数

  • endDateExclusive - 结束日期,不包括在内,已转换为 ZonedDateTime,不为 null。

unit - 用来度量数量的单位,不为 null。

返回值

此日期时间和结束日期时间之间的持续时间。

  • 异常

  • DateTimeException - 如果无法计算数量,或者无法将结束时间转换为 ZonedDateTime。

  • UnsupportedTemporalTypeException - 如果不支持该单位。

ArithmeticException - 如果发生数字溢出。

示例

package com.tutorialspoint;

import java.time.ZonedDateTime;
import java.time.temporal.ChronoUnit;

public class ZonedDateTimeDemo {
   public static void main(String[] args) {
      
      ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
      ZonedDateTime date1 = ZonedDateTime.now();
      System.out.println(date.until(date1, ChronoUnit.HOURS));  
   }
}

现场演示

6603
打印页面