In this article, we will learn how to convert OffsetDateTime to an Instant using toInstant() method of OffsetDateTime provided in Java 1.8 version
For Instant to an OffsetDateTime conversion, read Java 8 – How to convert Instant to an OffsetDateTime ?
Convert OffsetDateTime to an Instant :
- OffsetDateTime has a method toInstant() which returns Instant
- toInstant() – Converts invoking OffsetDateTime to an Instant
- Using this method, it is very easy to convert OffsetDateTime to an Instant
- After conversion, Instant will represent instantaneous/current moment at GMT/UTC
- Lets see an example for conversion of OffsetDateTime to an Instant in the below illustration
ConvertOffsetDateTimeToInstant.java
package in.bench.resources.java8.offsetdatetime.examples;
import java.time.Instant;
import java.time.OffsetDateTime;
public class ConvertOffsetDateTimeToInstant {
public static void main(String[] args) {
// 1. get Offset Date/time
OffsetDateTime offsetDateTime = OffsetDateTime.now();
System.out.println("Offset Date/time is :- \n"
+ offsetDateTime);
// 2. get Zone
System.out.println("\nOffset is :- \n"
+ offsetDateTime.getOffset());
// 3. convert OffsetDateTime to an Instant using toInstant()
Instant instant = offsetDateTime.toInstant();
System.out.print("\nConversion of OffsetDateTime to an Instant is :- \n"
+ instant);
}
}
Output:
Offset Date/time is :-
2022-08-17T09:15:42.382278700+05:30
Offset is :-
+05:30
Conversion of OffsetDateTime to an Instant is :-
2022-08-17T03:45:42.382278700Z
Related Articles:
- Java 8 – OffsetDateTime with method details and examples
- Java 8 – How to get Date, Time and Offset fields from OffsetDateTime ?
- Java 8 – How to form OffsetDateTime passing Date, Time and Offset fields ?
- Java 8 – How to form OffsetDateTime passing LocalDate, LocalTime and ZoneOffset ?
- Java 8 – How to form OffsetDateTime passing LocalDateTime and ZoneOffset ?
- Java 8 – How to form OffsetDateTime passing Instant and ZoneId ?
- Java 8 – How to parse OffsetDateTime in String form ?
- Java 8 – How to convert String to OffsetDateTime ?
- Java 8 – How to convert ZonedDateTime to String ?
- Java 8 – How to convert OffsetDateTime in different formats ?
- Java 8 – How to convert OffsetDateTime in different Format Style ?
- Java 8 – How to convert OffsetDateTime to LocalDateTime ?
- Java 8 – How to convert OffsetDateTime to ZonedDateTime ?
- Java 8 – How to convert OffsetDateTime to an Instant ?
- Java 8 – How to extract LocalDate and LocalTime and LocalDateTime from OffsetDateTime ?
- Java 8 – How to extract OffsetTime from OffsetDateTime ?
- Java 8 – How to convert OffsetDateTime to number of Seconds ?
- Java 8 – How to convert OffsetDateTime to java.util.Date and vice-versa ?
- Java 8 – How to convert OffsetDateTime to java.sql.Timestamp and vice-versa ?
- Java 8 – How to convert OffsetDateTime to Calendar and vice-versa ?
- Java 8 – How to convert OffsetDateTime to GregorianCalendar and vice-versa ?
- Java 8 – How to convert OffsetDateTime to XMLGregorianCalendar and vice-versa ?
- Java 8 – How to convert java.util.Date to an OffsetDateTime in different ways ?
- Java 8 – How to add Date and Time fields to OffsetDateTime ?
- Java 8 – How to subtract Date and Time fields from OffsetDateTime ?
- Java 8 – How to alter Date, Time and Offset fields of OffsetDateTime ?
- Java 8 – How to check whether an OffsetDateTime is Before another OffsetDateTime ?
- Java 8 – How to check whether an OffsetDateTime is After another OffsetDateTime ?
- Java 8 – How to compare two OffsetDateTime instances ?
- Java 8 – How to find difference between two OffsetDateTime using Period & Duration ?
- Java 9 – Find difference between two OffsetDateTime instances upto nanosecond precision ?
- More Java 8 Date/Time API examples
References:
- https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html
- https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html
- https://docs.oracle.com/javase/8/docs/api/java/time/ZoneOffset.html
- https://docs.oracle.com/javase/7/docs/api/java/util/Date.html
- https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html
Happy Coding !!
Happy Learning !!