Open In App

ChronoLocalDateTime toLocalTime() method in Java with Examples

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

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

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

        // create ChronoLocalDateTime object
        ChronoLocalDateTime time
            = LocalDateTime
                  .parse("2019-12-31T19:15:30");

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

        // print result
        System.out.println("LocalTime: "
                           + time.toLocalTime());
    }
}
Output:
ChronoLocalDateTime: 2019-12-31T19:15:30
LocalTime: 19:15:30
Program 2: Java
// Java program to demonstrate
// ChronoLocalDateTime.toLocalTime() method

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

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

        // create ChronoLocalDateTime object
        ChronoLocalDateTime time
            = LocalDateTime.parse(
                "2018-10-25T23:12:31.123");

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

        // print result
        System.out.println("LocalTime: "
                           + time.toLocalTime());
    }
}
Output:
ChronoLocalDateTime: 2018-10-25T23:12:31.123
LocalTime: 23:12:31.123
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDateTime.html#toLocalTime--

Next Article

Similar Reads