java.time.LocalTime.ofSecondOfDay() Method Example



Description

The java.time.LocalTime.ofSecondOfDay(long secondOfDay) method obtains an instance of LocalTime from a second-of-day value.

Declaration

Following is the declaration for java.time.LocalTime.ofSecondOfDay(long secondOfDay) method.

public static LocalTime ofSecondOfDay(long secondOfDay)

Parameters

secondOfDay − the second-of-day, from 0 to 24 * 60 * 60 - 1

Return Value

the local time, not null.

Exceptions

DateTimeException − if the seconds of day value is invalid.

Example

The following example shows the usage of java.time.LocalTime.ofSecondOfDay(long secondOfDay) method.

package com.tutorialspoint;

import java.time.LocalTime;

public class LocalTimeDemo {
   public static void main(String[] args) {
 
      LocalTime time = LocalTime.ofSecondOfDay(3600);
      System.out.println(time);  
   }
}

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

01:00
Advertisements