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]