Saturday, December 13, 2025
HomeLanguagesJavaLocalDateTime getSecond() method in Java with Examples

LocalDateTime getSecond() method in Java with Examples

The getSecond() method of an LocalDateTime class is used to return the second-of-minute field. This method returns an integer value ranging from 0 to 59, i.e. the Seconds of a minute.

Syntax:

public int getSecond()

Parameter: This method does not accept any parameter.

Returns: This method returns an integer value which represents the second-of-minute and it ranges from 0 to 59.

Below programs illustrate the LocalDateTime.getSecond() method:

Program 1:




// Java program to demonstrate
// LocalDateTime.getSecond() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalDateTime Object
        LocalDateTime local
            = LocalDateTime.parse("2018-12-03T12:39:10");
  
        // get SecondOfMinute
        int secondOfMinute = local.getSecond();
  
        // print result
        System.out.println("SecondOfMinute: "
                           + secondOfMinute);
    }
}


Output:

SecondOfMinute: 10

Program 2:




// Java program to demonstrate
// LocalDateTime.getSecond() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalDateTime Object
        LocalDateTime local
            = LocalDateTime.parse("2019-01-28T22:29:59");
  
        // get SecondOfMinute
        int secondOfMinute = local.getSecond();
  
        // print result
        System.out.println("SecondOfMinute: "
                           + secondOfMinute);
    }
}


Output:

SecondOfMinute: 59

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32447 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6815 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12031 POSTS0 COMMENTS
Shaida Kate Naidoo
6951 POSTS0 COMMENTS
Ted Musemwa
7202 POSTS0 COMMENTS
Thapelo Manthata
6898 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS