Thursday, March 12, 2026
HomeLanguagesJavaLocalDateTime getYear() method in Java with Examples

LocalDateTime getYear() method in Java with Examples

The getYear() method of an LocalDateTime class is used to return the year field.This method returns the primitive int value for the year from MIN_YEAR to MAX_YEAR.

Syntax:

public int getYear()

Parameter: This method does not accept any parameter.

Returns: This method returns an integer value which is the primitive int value for the year from MIN_YEAR to MAX_YEAR.

Below programs illustrate the LocalDateTime.getYear() method:

Program 1:




// Java program to demonstrate
// LocalDateTime.getYear() 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 Year
        int year = local.getYear();
  
        // print result
        System.out.println("Year: "
                           + year);
    }
}


Output:

Year: 2018

Program 2:




// Java program to demonstrate
// LocalDateTime.getYear() 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:10");
  
        // get Year
        int year = local.getYear();
  
        // print result
        System.out.println("Year: "
                           + year);
    }
}


Output:

Year: 2019

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#getYear()

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS