In this article, we will learn how to convert ZonedDateTime to an OffsetDateTime using toOffsetDateTime() method of ZonedDateTime provided in Java 1.8 version
For OffsetDateTime to ZonedDateTime conversion, read Java 8 – How to convert OffsetDateTime to ZonedDateTime ?
Convert ZonedDateTime to an OffsetDateTime :
- ZonedDateTime has a method toOffsetDateTime() which returns OffsetDateTime
- toOffsetDateTime() – Converts invoking ZonedDateTime to an OffsetDateTime
- Using this method, it is very easy to convert ZonedDateTime to an OffsetDateTime
- After conversion, OffsetDateTime have Date & Time parts same as that of ZonedDateTime
- Lets see an example for conversion of ZonedDateTime to an OffsetDateTime in the below illustration
ConvertZonedDateTimeToOffsetDateTime.java
package in.bench.resources.java8.zoneddatetime.examples;
import java.time.OffsetDateTime;
import java.time.ZonedDateTime;
public class ConvertZonedDateTimeToOffsetDateTime {
public static void main(String[] args) {
// 1. get Zoned Date/time
ZonedDateTime zonedDateTime = ZonedDateTime.now();
System.out.println("Zoned Date/time is :- \n"
+ zonedDateTime);
// 2. get Zone
System.out.println("\nZone is :- \n"
+ zonedDateTime.getZone());
// 3. convert ZonedDateTime to OffsetDateTime using toOffsetDateTime()
OffsetDateTime offsetDateTime = zonedDateTime.toOffsetDateTime();
System.out.print("\nConversion of ZonedDateTime to OffsetDateTime is :- \n"
+ offsetDateTime);
}
}
Output:
Zoned Date/time is :-
2022-08-13T15:14:48.761717100+05:30[Asia/Calcutta]
Zone is :-
Asia/Calcutta
Conversion of ZonedDateTime to OffsetDateTime is :-
2022-08-13T15:14:48.761717100+05:30
Related Articles:
- Java 8 – ZonedDateTime with method details and examples
- Java 8 – How to get Date, Time and Zone fields from ZonedDateTime ?
- Java 8 – How to form ZonedDateTime passing Date, Time and Zone fields ?
- Java 8 – How to form ZonedDateTime passing LocalDate, LocalTime and ZoneId ?
- Java 8 – How to form ZonedDateTime passing LocalDateTime and ZoneId ?
- Java 8 – How to form ZonedDateTime passing Instant and ZoneId ?
- Java 8 – How to parse ZonedDateTime in String form ?
- Java 8 – How to convert String to ZonedDateTime ?
- Java 8 – How to convert ZonedDateTime to String ?
- Java 8 – How to convert ZonedDateTime in different formats ?
- Java 8 – How to convert ZonedDateTime in different Format Style ?
- Java 8 – How to convert ZonedDateTime to LocalDateTime ?
- Java 8 – How to convert ZonedDateTime to an OffsetDateTime ?
- Java 8 – How to convert ZonedDateTime to an Instant ?
- Java 8 – How to extract LocalDate and LocalTime and LocalDateTime from ZonedDateTime ?
- Java 8 – How to convert ZonedDateTime to java.util.Date and vice-versa ?
- Java 8 – How to convert ZonedDateTime to java.sql.Timestamp and vice-versa ?
- Java 8 – How to convert ZonedDateTime to Calendar and vice-versa ?
- Java 8 – How to convert ZonedDateTime to GregorianCalendar and vice-versa ?
- Java 8 – How to convert ZonedDateTime to XMLGregorianCalendar and vice-versa ?
- Java 8 – How to convert java.util.Date to ZonedDateTime in different ways ?
- Java 8 – How to add Date and Time fields to ZonedDateTime ?
- Java 8 – How to subtract Date and Time fields from ZonedDateTime ?
- Java 8 – How to alter Date, Time and Zone fields of ZonedDateTime ?
- Java 8 – How to check whether a ZonedDateTime is Before another ZonedDateTime ?
- Java 8 – How to check whether a ZonedDateTime is After another ZonedDateTime ?
- Java 8 – How to compare two ZonedDateTime instances ?
- Java 8 – How to find difference between two ZonedDateTime using Period & Duration ?
- More Java 8 Date/Time API examples
References:
- https://docs.oracle.com/javase/8/docs/api/java/time/ZonedDateTime.html
- https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.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 !!