ZonedDateTime getDayOfMonth() example

Description

ZonedDateTime 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.ZonedDateTime;
//w w w. j ava 2  s  .  com
public class Main {
  public static void main(String[] args) {
    ZonedDateTime dateTime =ZonedDateTime.now();

    System.out.println(dateTime.getDayOfMonth());
  } 
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset