LocalDateTime getYear() method in Java



The year for a particular LocalDateTime can be obtained using the getYear() method in the LocalDateTime class in Java. This method requires no parameters and it returns the year which can range from MIN_YEAR to MAX_YEAR.

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-18T15:28:35");
      System.out.println("The LocalDateTime is: " + ldt);
      System.out.println("The year is: " + ldt.getYear());
   }
}

Output

The LocalDateTime is: 2019-02-18T15:28:35
The year is: 2019

Now let us understand the above program.

First the LocalDateTime is displayed. Then the year for the LocalDateTime is displayed using the getYear() method. A code snippet that demonstrates this is as follows −

LocalDateTime ldt = LocalDateTime.parse("2019-02-18T15:28:35");
System.out.println("The LocalDateTime is: " + ldt);
System.out.println("The year is: " + ldt.getYear());
Updated on: 2019-07-30T22:30:25+05:30

623 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements