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



描述

java.time.ZonedDateTime.now(ZoneId zone) 方法从指定时区的系统时钟中获取当前日期时间。

声明

以下是 java.time.ZonedDateTime.now(ZoneId zone) 方法的声明。

public static ZonedDateTime now(ZoneId zone)

参数

zone - 要使用的地区 ID,不能为空。

返回值

使用系统时钟的当前日期时间,不能为空。

示例

以下示例展示了 java.time.ZonedDateTime.now(ZoneId zone) 方法的使用。

package com.tutorialspoint;

import java.time.ZonedDateTime;
import java.time.ZoneId;

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

让我们编译并运行以上程序,它将生成以下结果 -

2017-03-28T13:50:51.306+05:30[Asia/Calcutta]
广告