java.time.OffsetDateTime.toOffsetTime() Method Example



Description

The java.time.OffsetDateTime.toOffsetTime() method gets the OffsetTime.

Declaration

Following is the declaration for java.time.OffsetDateTime.toOffsetTime() method.

public OffsetTime toOffsetTime()

Return Value

an OffsetTime representing the time and offset, not null.

Example

The following example shows the usage of java.time.OffsetDateTime.toOffsetTime() 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.toOffsetTime());  
   }
}

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

14:19:10.353+05:30
Advertisements