Wednesday, June 10, 2026
HomeLanguagesJavaLocalDate getDayOfMonth() method in Java

LocalDate getDayOfMonth() method in Java

The getDayOfMonth() method of LocalDate class in Java gets the day-of-month field.

Syntax:

public int getDayOfMonth()

Parameter: This method does not accepts any parameter.

Return Value: The function returns the day of the month which is in range 1-31.

Below programs illustrate the getDayOfMonth() method of LocalDate in Java:

Program 1:




// Program to illustrate the getDayOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        LocalDate dt = LocalDate.parse("2018-11-27");
        System.out.println(dt.getDayOfMonth());
    }
}


Output:

27

Program 2:




// Program to illustrate the getDayOfMonth() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        LocalDate dt = LocalDate.parse("2018-01-01");
        System.out.println(dt.getDayOfMonth());
    }
}


Output:

1

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getDayOfMonth()

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS