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-- Comment More infoAdvertise with us Next Article ChronoLocalDateTime toLocalTime() method in Java with Examples S srinam Follow Improve Article Tags : Misc Java Java-Functions Java-ChronoLocalDateTime Java-Time-Chrono package +1 More Practice Tags : JavaMisc Similar Reads ChronoLocalDateTime toLocalDate() method in Java with Examples The toLocalDate() method of a ChronoLocalDateTime interface is used to convert this ChronoLocalDateTime to an LocalDate. The method returns the LocalDate part of this ChronoLocalDateTime. Syntax: default LocalDate toLocalDate() Parameters: This method do not accept any parameter. Return value: This 1 min read ChronoZonedDateTime toLocalTime() method in Java with Examples 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 t 1 min read ChronoLocalDateTime toString() method in Java with Examples The toString() method of a ChronoLocalDateTime class is used to convert this ChronoLocalDateTime to an String. Syntax: String toString() Parameters: This method do not accept any parameter. Return value: This method returns a String which is the String representation of this ChronoLocalDateTime Belo 1 min read ChronoZonedDateTime toLocalDate() method in Java with Examples The toLocalDate() method of a ChronoZonedDateTime class is used to convert this ChronoZonedDateTime to the LocalDate. Syntax: default LocalDate toLocalDate() Parameters: This method do not accepts any parameter. Return value: This method returns LocalDate which is the same LocalDate represented by t 1 min read ChronoZonedDateTime toLocalDateTime() method in Java with Examples The toLocalDateTime() method of a ChronoZonedDateTime interface is used to convert this ChronoZonedDateTime to the LocalDateTime. Syntax: default LocalDateTime toLocalDateTime() Parameters: This method do not accepts any parameter. Return value: This method returns LocalDateTime which is the same Lo 1 min read Like