ZonedDateTime withDayOfYear(int dayOfYear) example

Description

ZonedDateTime withDayOfYear(int dayOfYear) returns a copy of this ZonedDateTime with the day-of-year altered.

Syntax

withDayOfYear has the following syntax.


public ZonedDateTime withDayOfYear(int dayOfYear)

Example

The following example shows how to use withDayOfYear.


import java.time.ZonedDateTime;
//from   ww w .j  a  v a2s  .c om
public class Main {
  public static void main(String[] args) {
    ZonedDateTime dateTime = ZonedDateTime.now();
    ZonedDateTime n = dateTime.withDayOfYear(14);
    System.out.println(n);
  } 
}

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