Saturday, February 7, 2026
HomeLanguagesJavaOffsetDateTime getYear() method in Java with examples

OffsetDateTime getYear() method in Java with examples

The getYear() method of OffsetDateTime class in Java is used to get the value of the year field.

Syntax :

public int getYear()

Parameter : This method does not accepts any parameter.

Return Value: It returns the year, from MIN_YEAR to MAX_YEAR.

Below programs illustrate the getYear() method:

Program 1 :




// Java program to demonstrate the getYear() method
  
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2018-12-03T12:30:30+01:00");
  
        // Prints the year of given date
        System.out.println("Year: " + date.getYear());
    }
}


Output:

Year: 2018

Program 2 :




// Java program to demonstrate the getYear() method
  
import java.time.OffsetDateTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // parses a date
        OffsetDateTime date = OffsetDateTime.parse("2016-10-03T12:30:30+01:20");
  
        // Prints the year of given date
        System.out.println("Year: " + date.getYear());
    }
}


Output:

Year: 2016

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html#getYear–

RELATED ARTICLES

Most Popular

Dominic
32491 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6863 POSTS0 COMMENTS
Nicole Veronica
11987 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12076 POSTS0 COMMENTS
Shaida Kate Naidoo
6996 POSTS0 COMMENTS
Ted Musemwa
7238 POSTS0 COMMENTS
Thapelo Manthata
6947 POSTS0 COMMENTS
Umr Jansen
6933 POSTS0 COMMENTS