Wednesday, June 10, 2026
HomeLanguagesJavaZonedDateTime toLocalDate() method in Java with Examples

ZonedDateTime toLocalDate() method in Java with Examples

The toLocalDate() method of a ZonedDateTime class is used to return the LocalDate part of this date-time object with the same year, month and day as this date-time.

Syntax:

public LocalDate toLocalDate()

Parameters: This method does not take any parameters.

Return value: This method returns a LocalDate representing the date part of this date-time, not null.

Below programs illustrate the toLocalDate() method:

Program 1:




// Java program to demonstrate
// ZonedDateTime.toLocalDate() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // print result
        System.out.println("ZonedDateTime: " + zoneddatetime);
  
        // get LocalDate
        LocalDate value = zoneddatetime.toLocalDate();
  
        // print result
        System.out.println("LocalDate: " + value);
    }
}


Output:

ZonedDateTime: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
LocalDate: 2018-12-06

Program 2:




// Java program to demonstrate
// ZonedDateTime.toLocalDate() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ZonedDateTime object
        ZonedDateTime zoneddatetime
            = ZonedDateTime.parse(
                "2018-10-25T23:12:31.123+02:00[Europe/Paris]");
  
        // print result
        System.out.println("ZonedDateTime: " + zoneddatetime);
  
        // get LocalDate
        LocalDate value = zoneddatetime.toLocalDate();
  
        // print result
        System.out.println("LocalDate: " + value);
    }
}


Output:

ZonedDateTime: 2018-10-25T23:12:31.123+02:00[Europe/Paris]
LocalDate: 2018-10-25

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

RELATED ARTICLES

2 COMMENTS

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