Java ZonedDateTime.ofLocal() Method with Examples
Tags: Java ZonedDateTime Java 8
In this Java core tutorial we learn how to use the ZonedDateTime.ofLocal() method to create new ZonedDateTime from given LocalDateTime object and time zone and using the preferred offset if possible.
Create ZonedDateTime from LocalDateTime and ZoneId
In Java we can use the ZonedDateTime.ofLocal(LocalDateTime localDateTime, ZoneId zone, ZoneOffset preferredOffset) method to create new ZonedDateTime object from given LocalDateTime, ZoneId and a preferred ZoneOffset if possible.
In the following Java code we how how to use the ZonedDateTime.ofLocal() method.
ZonedDateTimeOfLocalExample1.java
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
public class ZonedDateTimeOfLocalExample1 {
public static void main(String... args) {
LocalDateTime localDateTime = LocalDateTime.parse("2022-04-26T08:30:00");
ZoneId zoneId = ZoneId.of("Europe/Paris");
ZoneOffset zoneOffset = ZoneOffset.ofHours(7);
ZonedDateTime zonedDateTime = ZonedDateTime.ofLocal(localDateTime, zoneId, zoneOffset);
System.out.println("localDateTime: " + localDateTime);
System.out.println("zonedDateTime: " + zonedDateTime);
}
}
localDateTime: 2022-04-26T08:30
zonedDateTime: 2022-04-26T08:30+02:00[Europe/Paris]
In the following Java code we how how to use the ZonedDateTime.ofLocal() method with preferred ZoneOffset argument is null.
ZonedDateTimeOfLocalExample2.java
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;
public class ZonedDateTimeOfLocalExample2 {
public static void main(String... args) {
LocalDateTime localDateTime = LocalDateTime.parse("2022-04-26T08:30:00");
ZoneId zoneId = ZoneId.of("Europe/Paris");
ZonedDateTime zonedDateTime = ZonedDateTime.ofLocal(localDateTime, zoneId, null);
System.out.println("localDateTime: " + localDateTime);
System.out.println("zonedDateTime: " + zonedDateTime);
}
}
localDateTime: 2022-04-26T08:30
zonedDateTime: 2022-04-26T08:30+02:00[Europe/Paris]
Happy Coding 😊
Related Articles
Java ZonedDateTime.now() method with Examples
Java ZonedDateTime.of() Method with Examples
Java ZonedDateTime.ofInstant() Method with Examples
Java ZonedDateTime.ofStrict() Method with Examples
Java ZonedDateTime.parse() Method with Examples
Java ZonedDateTime.getOffset() Method with Examples
Java ZonedDateTime.withEarlierOffsetAtOverlap() Method with Examples
Java ZonedDateTime.withLaterOffsetAtOverlap() Method with Examples
Java ZonedDateTime.getZone() Method with Examples
Java ZonedDateTime.withZoneSameLocal() Method with Examples
Java ZonedDateTime.withZoneSameInstant() Method with Examples
Java ZonedDateTime.withFixedOffsetZone() Method with Examples
Java ZonedDateTime.toLocalDateTime() Method with Examples
Java ZonedDateTime.toLocalDate() Method with Examples
Java ZonedDateTime.toLocalTime() Method with Examples
Java ZonedDateTime.getYear() Method with Examples
Java ZonedDateTime.getMonthValue() Method with Examples
Java ZonedDateTime.getMonth() Method with Examples
Java ZonedDateTime.getDayOfMonth() Method with Examples
Java ZonedDateTime.getDayOfYear() Method with Examples
Java ZonedDateTime.getDayOfWeek() Method with Examples
Java ZonedDateTime.getHour() Method with Examples
Java ZonedDateTime.getMinute() Method with Examples
Java ZonedDateTime.getSecond() Method with Examples
Java ZonedDateTime.getNano() Method with Examples
Java ZonedDateTime.withYear() Method with Examples
Java ZonedDateTime.withMonth() Method with Examples
Java ZonedDateTime.withDayOfMonth() Method with Examples
Java ZonedDateTime.withDayOfYear() Method with Examples
Java ZonedDateTime.withHour() Method with Examples
Java ZonedDateTime.withMinute() Method with Examples
Java ZonedDateTime.withSecond() Method with Examples
Java ZonedDateTime.withNano() Method with Examples
Java ZonedDateTime.plusYears() Method with Examples
Java ZonedDateTime.plusMonths() Method with Examples
Java ZonedDateTime.plusWeeks() Method with Examples
Java ZonedDateTime.plusDays() Method with Examples
Java ZonedDateTime.plusHours() Method with Examples
Java ZonedDateTime.plusMinutes() Method with Examples
Java ZonedDateTime.plusSeconds() Method with Examples
Java ZonedDateTime.plusNanos() Method with Examples
Java ZonedDateTime.minusYears() Method with Examples
Java ZonedDateTime.minusMonths() Method with Examples
Java ZonedDateTime.minusWeeks() Method with Examples
Java ZonedDateTime.minusDays() Method with Examples
Java ZonedDateTime.minusHours() Method with Examples
Java ZonedDateTime.minusMinutes() Method with Examples
Java ZonedDateTime.minusSeconds() Method with Examples
Java ZonedDateTime.minusNanos() Method with Examples
Java ZonedDateTime.format() Method with Examples
Java ZonedDateTime.toOffsetDateTime() Method with Examples
Java ZonedDateTime.equals() Method with Examples
Java ZonedDateTime.toString() Method with Examples
Java Compare two ZonedDateTime Values