In this article, we will learn how to convert LocalDateTime to java.util.Date using atZone() method of LocalDateTime provided in Java 1.8 version and vice-versa
Date class in Java 1.8 version :
- There are 2 new methods introduced in Java 1.8 version for Date class, those are
- from(Instant) – This static method obtains an instance of
Date
from anInstant
object - toInstant() – This method converts invoking
Date
object to anInstant
- from(Instant) – This static method obtains an instance of
- Note: Many legacy methods of Date class are deprecated
1. Convert LocalDateTime to java.util.Date :
- LocalDateTime consists of only Date & Time information but doesn’t have Zone information whereas java.util.Date requires all 3 Date, Time and Zone informations
- java.util.Date = LocalDateTime + Zone information
- For LocalDateTime to java.util.Date conversion, Time-Zone information is required
- Date.from() method accepts Instant as input-argument
- Convert LocalDateTime to ZonedDateTime using atZone() method passing ZoneId as argument and then invoke toInstant() method which returns an Instant
- Now, pass above converted Instant from LocalDateTime to Date.from() method which will return java.util.Date
- Converted java.util.Date will have,
- Date & Time parts are same as that of LocalDateTime
- Adding System default Zone information
- In short, LocalDateTime -> ZonedDateTime -> Instant -> java.util.Date
- Lets see an example for conversion of LocalDateTime to java.util.Date in the below illustration
ConvertLocalDateTimeToJavaUtilDate.java
package in.bench.resources.java8.localdatetime.examples;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.Date;
public class ConvertLocalDateTimeToJavaUtilDate {
public static void main(String[] args) {
// 1. get current System Date/time
LocalDateTime localDateTime = LocalDateTime.now();
System.out.println("Current System Date/time is :- \n"
+ localDateTime);
// 2. get system default zone
ZoneId zoneId = ZoneId.systemDefault();
System.out.println("\nDefault System Zone is :- \n"
+ zoneId);
// 3. convert LocalDateTime to java.util.Date using atZone(ZoneId)
Date date = Date.from(localDateTime.atZone(zoneId).toInstant());
System.out.print("\nConversion of localDateTime to java.util.Date is :- \n"
+ date);
}
}
Output:
Current System Date/time is :-
2022-08-09T14:42:36.482539400
Default System Zone is :-
Asia/Calcutta
Conversion of localDateTime to java.util.Date is :-
Tue Aug 09 14:42:36 IST 2022
2. Convert java.util.Date to LocalDateTime :
- Get java.util.Date instantiating Date object for conversion to LocalDateTime
- Conversion steps –
- Convert Date to Instant using toInstant() method
- And then invoke atZone() method passing ZoneId as argument which returns ZonedDateTime
- And then invoke toLocalDateTime() method which returns LocalDateTime
- In short, java.util.Date -> Instant -> ZonedDateTime -> LocalDateTime
- Read Java 8 – How to convert java.util.Date to LocalDateTime in different ways ? for more details and examples
- Lets see an example for conversion of java.util.Date to LocalDateTime in the below illustration
ConvertJavaUtilDateToLocalDateTime.java
package in.bench.resources.java8.localdatetime.examples;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.util.Date;
public class ConvertJavaUtilDateToLocalDateTime {
public static void main(String[] args) {
// 1. get current Date/time
Date date = new Date();
System.out.println("Current Date/time is :- \n"
+ date);
// 2. get system default zone
ZoneId zoneId = ZoneId.systemDefault();
System.out.println("\nDefault System Zone is :- \n"
+ zoneId);
// 3. convert java.util.Date to LocalDateTime
LocalDateTime localDateTime = date.toInstant().atZone(zoneId).toLocalDateTime();
System.out.print("\nConversion of java.util.Date to LocalDateTime is :- \n"
+ localDateTime);
}
}
Output:
Current Date/time is :-
Tue Aug 09 14:42:49 IST 2022
Default System Zone is :-
Asia/Calcutta
Conversion of java.util.Date to LocalDateTime is :-
2022-08-09T14:42:49.650
Related Articles:
- Java 8 – LocalDateTime with method details and examples
- Java 8 – How to get Date and Time fields from LocalDateTime ?
- Java 8 – How to form LocalDateTime passing Date and Time fields ?
- Java 8 – How to form LocalDateTime passing LocalDate and LocalTime ?
- Java 8 – How to form LocalDateTime passing Instant and ZoneId ?
- Java 8 – How to form LocalDateTime passing Second/Nano and ZoneOffset ?
- Java 8 – How to parse LocalDateTime in String form ?
- Java 8 – How to convert String to LocalDateTime ?
- Java 8 – How to convert LocalDateTime to String ?
- Java 8 – How to convert LocalDateTime in different formats ?
- Java 8 – How to convert LocalDateTime in different Format Style ?
- Java 8 – How to convert LocalDateTime to ZonedDateTime ?
- Java 8 – How to convert LocalDateTime to an OffsetDateTime ?
- Java 8 – How to convert LocalDateTime to an Instant ?
- Java 8 – How to extract LocalDateTime and LocalTime from LocalDateTime ?
- Java 8 – How to convert LocalDateTime to java.util.Date and vice-versa ?
- Java 8 – How to convert LocalDateTime to java.sql.Timestamp and vice-versa ?
- Java 8 – How to convert LocalDateTime to Calendar and vice-versa ?
- Java 8 – How to convert LocalDateTime to GregorianCalendar and vice-versa ?
- Java 8 – How to convert LocalDateTime to XMLGregorianCalendar and vice-versa ?
- Java 8 – How to convert java.util.Date to LocalDateTime in different ways ?
- Java 8 – How to add Date and Time fields to LocalDateTime ?
- Java 8 – How to subtract Date and Time fields from LocalDateTime ?
- Java 8 – How to alter Date and Time fields of LocalDateTime ?
- Java 8 – How to check whether a LocalDateTime is Before another LocalDateTime ?
- Java 8 – How to check whether a LocalDateTime is After another LocalDateTime ?
- Java 8 – How to compare two LocalDateTime instances ?
- Java 8 – How to find difference between two LocalDateTime using Period & Duration ?
- Java 8 – What are all the Temporal Fields supported by LocalDateTime ?
- Java 8 – What are all the Temporal Units supported by LocalDateTime ?
- More Java 8 Date/Time API examples
References:
- https://docs.oracle.com/javase/8/docs/api/java/time/LocalDateTime.html
- https://docs.oracle.com/javase/8/docs/api/java/time/ZonedDateTime.html
- https://docs.oracle.com/javase/8/docs/api/java/time/ZoneId.html
- https://docs.oracle.com/javase/8/docs/api/java/time/Instant.html
- https://docs.oracle.com/javase/8/docs/api/java/util/Date.html
- https://docs.oracle.com/javase/8/docs/api/java/util/Calendar.html
- https://docs.oracle.com/javase/8/docs/api/java/sql/Timestamp.html
Happy Coding !!
Happy Learning !!