ZonedDateTime getMonthValue() example
Description
ZonedDateTime getMonthValue()
gets the month-of-year field from 1 to 12.
Syntax
getMonthValue
has the following syntax.
public int getMonthValue()
Example
The following example shows how to use getMonthValue
.
import java.time.ZonedDateTime;
// w w w .j a v a 2 s. c o m
public class Main {
public static void main(String[] args) {
ZonedDateTime dateTime =ZonedDateTime.now();
System.out.println(dateTime.getMonthValue());
}
}
The code above generates the following result.