LocalDateTime getMonthValue() example
Description
LocalDateTime getMonthValue()
gets the month-of-year field from 1 to 12.
This method returns the month as an int 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.LocalDateTime;
/*from w w w . j ava 2 s .c om*/
public class Main {
public static void main(String[] args) {
LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
System.out.println(a.getMonthValue());
}
}
The code above generates the following result.