Open In App

LocalTime ofSecondOfDay() method in Java with Examples

Last Updated : 04 Dec, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The ofSecondOfDay() method of LocalTime class is used to obtain LocalTime Instance from a second-of-day value. This returns a LocalTime with the specified the second-of-day, from 0 to 24 * 60 * 60 - 1 passed as parameter. Syntax:
public static LocalTime ofSecondOfDay(long secondOfDay)
Parameters: This method accepts a single parameter secondOfDay which is the second-of-day, from 0 to 24 * 60 * 60 - 1. Return value: This method returns LocalTime instance created from the specified secondOfDay. Exception: This method throws DateTimeException if the second-of-day value is invalid. Below programs illustrate the ofSecondOfDay() method: Program 1: Java
// Java program to demonstrate
// LocalTime.ofSecondOfDay() method

import java.time.*;

public class GFG {
    public static void main(String[] args)
    {

        // create a nano of day
        long secondvalue = 14245l;

        // applying ofSecondOfDay()
        LocalTime value
            = LocalTime.ofSecondOfDay(secondvalue);

        // print result
        System.out.println("LocalTime: "
                           + value);
    }
}
Output:
LocalTime: 03:57:25
Program 2: Java
// Java program to demonstrate
// LocalTime.ofSecondOfDay() method

import java.time.*;

public class GFG {
    public static void main(String[] args)
    {

        // create a nano of day
        long second = 24005;

        // applying ofSecondOfDay()
        LocalTime value
            = LocalTime.ofSecondOfDay(second);

        // print result
        System.out.println("LocalTime: "
                           + value);
    }
}
Output:
LocalTime: 06:40:05
References: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#ofSecondOfDay(long)

Next Article
Practice Tags :

Similar Reads