java.time.ZonedDateTime.now() 方法

描述

java.time.ZonedDateTime.now() 方法从默认时区的系统时钟获取当前日期时间。


声明

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

public static ZonedDateTime now()

返回值

使用系统时钟和默认时区的当前日期时间,不为空。


示例

下面的例子展示了 java.time.ZonedDateTime.now() 方法的使用。

package com.tutorialspoint;

import java.time.ZonedDateTime;

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

让我们编译并运行上面的程序,这将产生下面的结果 −

2017-03-28T13:50:22.315+05:30[Asia/Calcutta]