java.time.OffsetDateTime.of() Method Example



Description

The java.time.OffsetDateTime.of(LocalDate date, LocalTime time, ZoneOffset offset) method obtains an instance of OffsetDateTime from a date, time and offset.

Declaration

Following is the declaration for java.time.OffsetDateTime.of(LocalDate date, LocalTime time, ZoneOffset offset) method.

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

Parameters

  • date − the local date, not null

  • time − the local time, not null

  • offset − the zone offset, not null

Return Value

the offset date-time, not null.

Example

The following example shows the usage of java.time.OffsetDateTime.of(LocalDate date, LocalTime time, ZoneOffset offset) method.

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);  
   }
}

Let us compile and run the above program, this will produce the following result −

2017-02-03T12:30:30Z
Advertisements