Java Date Time - LocalDate getDayOfMonth() example








LocalDate getDayOfMonth() gets the day-of-month field. This method returns the primitive int value for the day-of-month.

Syntax

getDayOfMonth has the following syntax.

public int getDayOfMonth()

Example

The following example shows how to use getDayOfMonth.

import java.time.LocalDate;

public class Main {
  public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);

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

The code above generates the following result.