java.time.OffsetTime.toLocalTime() Method Example



Description

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

Declaration

Following is the declaration for java.time.OffsetTime.toLocalTime() method.

public LocalTime toLocalTime()

Return Value

the time part of this date-time, not null.

Example

The following example shows the usage of java.time.OffsetTime.toLocalTime() method.

package com.tutorialspoint;

import java.time.OffsetTime;

public class OffsetTimeDemo {
   public static void main(String[] args) {
 
      OffsetTime time = OffsetTime.now();
      System.out.println(time.toLocalTime());  
   }
}

Let us compile and run the above program, this will produce the following result −

14:55:41.752
Advertisements