LocalDateTime getDayOfMonth() example
Description
LocalDateTime getDayOfMonth()
gets the day-of-month field.
Syntax
getDayOfMonth
has the following syntax.
public int getDayOfMonth()
Example
The following example shows how to use getDayOfMonth
.
import java.time.LocalDateTime;
//from ww w .j ava2 s . c o m
public class Main {
public static void main(String[] args) {
LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
System.out.println(a.getDayOfMonth());
}
}
The code above generates the following result.