OffsetTime now(ZoneId zone) example

Description

OffsetTime now(ZoneId zone) creates the current time from the system clock in the specified time-zone.

Syntax

now has the following syntax.


public static OffsetTime now(ZoneId zone)

Example

The following example shows how to use now.


import java.time.OffsetTime;
import java.time.ZoneId;
//w  w  w .  ja  va  2 s . com
public class Main {
  public static void main(String[] args) {
    OffsetTime m = OffsetTime.now(ZoneId.systemDefault());

    System.out.println(m);

  }
}

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