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



说明

java.time.ZonedDateTime.truncatedTo(TemporalUnit unit) 方法使用已截断的时间返回此 ZonedDateTime 的副本。

声明

以下是 java.time.ZonedDateTime.truncatedTo(TemporalUnit unit) 方法的声明。

public ZonedDateTime truncatedTo(TemporalUnit unit)

参数

unit - 要截断的单位,非 null。

返回值

基于此日期时间(时间已截断)的 ZonedDateTime,非 null。

异常

  • DateTimeException - 如果无法截断。

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

示例

以下示例展示了如何使用 java.time.ZonedDateTime.truncatedTo(TemporalUnit unit) 方法。

package com.tutorialspoint;

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

public class ZonedDateTimeDemo {
   public static void main(String[] args) {
 
      ZonedDateTime date = ZonedDateTime.now();
      System.out.println(date.truncatedTo(ChronoUnit.DAYS));  
   }
}

让我们编译并运行上述程序,这会生成以下结果 -

2017-03-28T00:00+05:30[Asia/Calcutta]
广告