java.time.OffsetDateTime.toInstant() Method Example



Description

The java.time.OffsetDateTime.toInstant() method Converts this date-time to an Instant.

Declaration

Following is the declaration for java.time.OffsetDateTime.toInstant() method.

public Instant toInstant()

Return Value

an Instant representing the same instant, not null.

Example

The following example shows the usage of java.time.OffsetDateTime.toInstant() method.

package com.tutorialspoint;

import java.time.OffsetDateTime;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {
 
      OffsetDateTime date = OffsetDateTime.now();
      System.out.println(date.toInstant());  
   }
}

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

2017-03-21T08:45:08.755Z
Advertisements