OffsetDateTime getSecond() method in Java with examples

Last Updated : 31 Oct, 2019
The getSecond() method of OffsetDateTime class in Java is used to get the value of the second-of-minute field. Syntax :
public int getSecond()
Parameter : This method accepts does not accepts any parameter. Return Value: It returns the second-of-minute which ranges from 0 to 59. Below programs illustrate the getSecond() method: Program 1 : Java
// Java program to demonstrate the getSecond() method

import java.time.OffsetDateTime;

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

        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2018-12-03T12:30:30+01:00");

        // Prints the second of given date
        System.out.println("second: " + date.getSecond());
    }
}
Output:
second: 30
Program 2 : Java
// Java program to demonstrate the getSecond() method

import java.time.OffsetDateTime;

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

        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2016-10-03T12:30:30+01:20");

        // Prints the second of given date
        System.out.println("second: " + date.getSecond());
    }
}
Comment