Friday, July 24, 2026
HomeLanguagesJavaOffsetDateTime getSecond() method in Java with examples

OffsetDateTime getSecond() method in Java with examples

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 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 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());
    }
}


Output:

second: 30

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getSecond–

RELATED ARTICLES

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6902 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6971 POSTS0 COMMENTS