ZonedDateTime now(Clock clock) example

Description

ZonedDateTime now(Clock clock) creates the current date-time from the specified clock.

Syntax

now has the following syntax.


public static ZonedDateTime now(Clock clock)

Example

The following example shows how to use now.


import java.time.Clock;
import java.time.ZonedDateTime;
//from   w  w  w . j  av  a  2s .  c om
public class Main {
  public static void main(String[] args) {
    ZonedDateTime z = ZonedDateTime.now(Clock.systemUTC());
    
    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