java.time.OffsetTime.ofInstant() Method Example



Description

The java.time.OffsetTime.ofInstant(Instant instant, ZoneId zone) method obtains an instance of OffsetTime from an Instant and zone ID.

Declaration

Following is the declaration for java.time.OffsetTime.ofInstant(Instant instant, ZoneId zone) method.

public static OffsetTime ofInstant(Instant instant, ZoneId zone)

Parameters

  • instant − the instant to create the time from, not null

  • zone − the time-zone, which may be an offset, not null

Return Value

the offset time, not null.

Example

The following example shows the usage of java.time.OffsetTime.ofInstant(Instant instant, ZoneId zone) method.

package com.tutorialspoint;

import java.time.OffsetTime;
import java.time.Instant;
import java.time.ZoneId;

public class OffsetTimeDemo {
   public static void main(String[] args) {
 
      OffsetTime time = OffsetTime.ofInstant(Instant.now(),ZoneId.systemDefault());
      System.out.println(time);  
   }
}

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

06:30:40.000050+05:30
Advertisements