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.