Java Date Time - LocalDateTime getYear() example








LocalDateTime getYear() gets the year field. This method returns the primitive int value for the year.

The year returned by this method is proleptic as per get(YEAR). To obtain the year-of-era, use get(YEAR_OF_ERA).

Syntax

getYear has the following syntax.

public int getYear()

Example

The following example shows how to use getYear.

import java.time.LocalDateTime;

public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
    
    System.out.println(a.getYear());
  }
}

The code above generates the following result.