Open In App

ChronoZonedDateTime toLocalTime() method in Java with Examples

Last Updated : 28 May, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The toLocalTime() method of a ChronoZonedDateTime class is used to convert this ChronoZonedDateTime to the LocalTime. Syntax:
default LocalTime toLocalTime()
Parameters: This method do not accepts any parameter. Return value: This method returns LocalTime which is the same LocalTime represented by this ChronoZonedDateTime. Below programs illustrate the toLocalTime() method: Program 1: Java
// Java program to demonstrate
// ChronoZonedDateTime.toLocalTime() method

import java.time.*;
import java.time.chrono.*;
import java.time.chrono.*;

public class GFG {
    public static void main(String[] args)
    {

        // create ChronoZonedDateTime object
        ChronoZonedDateTime time
            = ZonedDateTime
                  .parse(
                      "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");

        // print ChronoZonedDateTime
        System.out.println("ChronoZonedDateTime: "
                           + time);

        // print result
        System.out.println("LocalTime: "
                           + time.toLocalTime());
    }
}
Output:
ChronoZonedDateTime: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
LocalTime: 19:21:12.123
Program 2: Java
// Java program to demonstrate
// ChronoZonedDateTime.toLocalTime() method

import java.time.*;
import java.time.chrono.*;
import java.time.chrono.*;

public class GFG {
    public static void main(String[] args)
    {

        // create ChronoZonedDateTime object
        ChronoZonedDateTime time
            = ZonedDateTime.parse(
                "1918-10-25T23:12:38.543+02:00[Europe/Paris]");

        // print ChronoZonedDateTime
        System.out.println("ChronoZonedDateTime: "
                           + time);

        // print result
        System.out.println("LocalTime: "
                           + time.toLocalTime());
    }
}
Output:
ChronoZonedDateTime: 1918-10-25T23:12:38.543Z[Europe/Paris]
LocalTime: 23:12:38.543
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#toLocalTime--

Next Article

Similar Reads