- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 瞬间
- java.time - 日期
- java.time - 日期时间
- java.time - 时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年份
- java.time - 年月
- java.time - 时区日期时间
- java.time - 时区标识
- java.time - 时区偏移量
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
java.time.OffsetDateTime.now() 方法示例
说明
java.time.OffsetDateTime.now(ZoneId zone) 方法从指定时区的系统时钟中获取当前的日期时间。
声明
以下是 java.time.OffsetDateTime.now(ZoneId zone) 方法的声明。
public static OffsetDateTime now(ZoneId zone)
public static OffsetDateTime now(ZoneId zone)
参数
zone − 要使用的时区标识,非空。
返回值
使用系统时钟的当前日期时间,非空。
示例
package com.tutorialspoint; import java.time.OffsetDateTime; import java.time.ZoneId; public class OffsetDateTimeDemo { public static void main(String[] args) { OffsetDateTime date = OffsetDateTime.now(ZoneId.systemDefault()); System.out.println(date); } }
在线演示
2017-03-21T12:37:15.477+05:30
打印页面
广告