java.time.ZonedDateTime.now(ZoneId zone)
方法從指定時區中的系統時鐘獲取當前日期時間。
以下是java.time.ZonedDateTime.now(ZoneId zone)
方法的宣告。
public static ZonedDateTime now(ZoneId zone)
zone
- 要使用的區域ID,不為null
。
使用系統時鐘的當前日期時間,不為null
。
以下範例顯示了java.time.ZonedDateTime.now(ZoneId zone)
方法的用法。
package com.yiibai;
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]