LocalDateTime getMinute() method in Java


The minute of the hour for a particular LocalDateTime can be obtained using the getMinute() method in the LocalDateTime class in Java. This method requires no parameters and it returns the minute of the hour in the range of 0 to 59.

A program that demonstrates this is given as follows −

Example

 Live Demo

import java.time.*;
public class Demo {
   public static void main(String[] args) {
      LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30");
      System.out.println("The LocalDateTime is: " + ldt);
      System.out.println("The minute is: " + ldt.getMinute());
   }
}

Output

The LocalDateTime is: 2019-02-18T23:15:30
The minute is: 15

Now let us understand the above program.

First the LocalDateTime is displayed. Then the minute of hour for the LocalDateTime is displayed using the getMinute() method. A code snippet that demonstrates this is as follows −

LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30");
System.out.println("The LocalDateTime is: " + ldt);
System.out.println("The minute is: " + ldt.getMinute());

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 30-Jul-2019

34 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements