Sunday, February 22, 2026
HomeLanguagesJavaOffsetTime toLocalTime() method in Java with examples

OffsetTime toLocalTime() method in Java with examples

The toLocalTime() method of OffsetTime class in Java gets the LocalTime part of this date-time.

Syntax :

public LocalTime toLocalTime()

Parameter: This method does not accepts any parameter.

Return Value: It returns a LocalTime with the same hour, minute, second and nanosecond as this date-time.

Below program illustrate the toLocalTime() method:




// Java program to demonstrate the toLocalTime() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
        // Gets the current time
        OffsetTime time = OffsetTime.now();
  
        // Gets the local time
        System.out.println("Local-time: " + time.toLocalTime());
    }
}


Output:

Local-time: 03:59:10.258

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#toLocalTime–

RELATED ARTICLES

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS