The getSecond() method of OffsetDateTime class in Java is used to get the value of the second-of-minute field.
Syntax :
Java
Java
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 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:
Program 2 :
second: 30
// 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());
}
}