ZonedDateTime withMonth(int month) example
Description
ZonedDateTime withMonth(int month)
returns a copy of this ZonedDateTime
with the month-of-year value altered.
Syntax
withMonth
has the following syntax.
public ZonedDateTime withMonth(int month)
Example
The following example shows how to use withMonth
.
import java.time.ZonedDateTime;
//w w w. j a v a 2 s. co m
public class Main {
public static void main(String[] args) {
ZonedDateTime dateTime =ZonedDateTime.now();
dateTime = dateTime.withMonth(2);
System.out.println(dateTime);
}
}
The code above generates the following result.