Java Date Time - ZonedDateTime withDayOfYear(int dayOfYear) example








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;

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.