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(LocalDateTime date, ZoneOffset offset) method.

public static OffsetDateTime of(LocalDateTime date, ZoneOffset offset)

Parameters

  • date − the local date-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(LocalDateTime date, ZoneOffset offset) method.

package com.tutorialspoint;

import java.time.LocalDateTime;
import java.time.OffsetDateTime;
import java.time.ZoneOffset;

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

      LocalDateTime localDateTime = LocalDateTime.parse("2017-02-03T12:20:30");
      OffsetDateTime date = OffsetDateTime.of(localDateTime,ZoneOffset.UTC);
      System.out.println(date);  
   }
}

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

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