Thursday, October 9, 2025
HomeLanguagesJavaLocalDateTime toLocalDate() method in Java with Examples

LocalDateTime toLocalDate() method in Java with Examples

The toLocalDate() method of LocalDateTime class is used to get the LocalDate representation of this LocalDateTime. This method is derived from the Object Class and behaves in the similar way.

Syntax:

public LocalDate toLocalDate()

Parameter: This method takes no parameters.

Returns: This method returns a LocalDate value which is the LocalDate representation of this LocalDateTime.

Below programs illustrate the LocalDateTime.toLocalDate() method:

Program 1:




// Program to illustrate the toLocalDate() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Get the LocalDateTime instance
        LocalDateTime dt = LocalDateTime.now();
  
        // Get the LocalDate representation of this LocalDateTime
        // using toLocalDate() method
        System.out.println(dt.toLocalDate());
    }
}


Output:

2018-11-30

Program 2:




// Program to illustrate the toLocalDate() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Get the LocalDateTime instance
        LocalDateTime dt
            = LocalDateTime
                  .parse("2018-11-03T12:45:30");
  
        // Get the LocalDate representation of this LocalDateTime
        // using toLocalDate() method
        System.out.println(dt.toLocalDate());
    }
}


Output:

2018-11-03

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

RELATED ARTICLES

Most Popular

Dominic
32345 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6714 POSTS0 COMMENTS
Nicole Veronica
11877 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11940 POSTS0 COMMENTS
Shaida Kate Naidoo
6834 POSTS0 COMMENTS
Ted Musemwa
7094 POSTS0 COMMENTS
Thapelo Manthata
6789 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS