OffsetDateTime getDayOfMonth() example
Description
OffsetDateTime 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.OffsetDateTime;
/*ww w .j a v a 2 s .co m*/
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
int l = o.getDayOfMonth();
System.out.println(l);
}
}
The code above generates the following result.