Wednesday, July 3, 2024
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–

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments