ZonedDateTime ofInstant(Instant instant, ZoneId zone) example

Description

ZonedDateTime ofInstant(Instant instant, ZoneId zone) creates an instance of ZonedDateTime from an Instant.

Syntax

ofInstant has the following syntax.


public static ZonedDateTime ofInstant(Instant instant,    ZoneId zone)

Example

The following example shows how to use ofInstant.


import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
//w  ww.  j a  v a  2  s  .c  om
public class Main {
  public static void main(String[] args) {
    ZonedDateTime z = ZonedDateTime.ofInstant(Instant.now(),ZoneId.systemDefault());
    
    System.out.println(z);

  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset