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-- Comment More infoAdvertise with us Next Article ChronoZonedDateTime toLocalTime() method in Java with Examples S ShubhamMaurya3 Follow Improve Article Tags : Misc Java Java-Functions Java-ChronoLocalDateTime Java-Time-Chrono package +1 More Practice Tags : JavaMisc Similar Reads 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 ChronoLocalDateTime toLocalTime() method in Java with Examples 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 1 min read ChronoZonedDateTime toString() method in Java with Examples The toString() method of a ChronoZonedDateTime interface is used to convert this ChronoZonedDateTime to the String representation. Syntax: String toString() Parameters: This method do not accepts any parameter. Return value: This method returns String which is the String representation of this Chron 1 min read 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 Like