java.time.OffsetDateTime.of() 方法示例



描述

java.time.OffsetDateTime.of(LocalDate date, LocalTime time, ZoneOffset offset) 方法从一个日期、时间和偏移量中获取一个 OffsetDateTime 实例。

声明

以下是 java.time.OffsetDateTime.of(LocalDate date, LocalTime time, ZoneOffset offset) 方法的声明。

public static OffsetDateTime of(LocalDate date, LocalTime time, ZoneOffset offset)

参数

  • date - 非 null 的本地日期

  • time - 非 null 的本地时间

  • offset - 非 null 的时区偏移

返回值

非 null 的偏移日期时间。

示例

以下示例展示了 java.time.OffsetDateTime.of(LocalDate date, LocalTime time, ZoneOffset offset) 方法的用法。

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.time.LocalTime;
import java.time.ZoneOffset;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {

      LocalDate localDate = LocalDate.parse("2017-02-03");
      LocalTime localTime = LocalTime.parse("12:30:30");
      OffsetDateTime date = OffsetDateTime.of(localDate, localTime,ZoneOffset.UTC);
      System.out.println(date);  
   }
}

让我们编译并运行以上程序,这会生成以下结果:

2017-02-03T12:30:30Z
广告