java.time.OffsetDateTime.toLocalTime() Method Example



Description

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

Declaration

Following is the declaration for java.time.OffsetDateTime.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.OffsetDateTime.toLocalTime() method.

package com.tutorialspoint;

import java.time.OffsetDateTime;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {
 
      OffsetDateTime date = OffsetDateTime.now();
      System.out.println(date.toLocalTime());  
   }
}

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

14:15:34.565
Advertisements