Friday, September 19, 2025
HomeLanguagesJavaIsoChronology dateYearDay(int, int) method in Java with Example

IsoChronology dateYearDay(int, int) method in Java with Example

The dateYearDay() method of java.time.chrono.IsoChronology class is used to retrieve the local date according to the Iso calendar for the particular year and date.
Syntax: 
 

public LocalDate dateYearDay(int prolepticYear,
                             int dayOfYear)

Parameter: This method takes the following arguments as parameter: 
 

  • year: which is the integer proleptic year for the year field of LocalDate
  • day: which is the integer day for the day field of LocalDate

Return Value: This method returns the local date according to the Iso calendar for the particular year and date.
Below are the examples to illustrate the dateYearDay() method:
Example 1: 
 

Java




// Java program to demonstrate
// dateYearDay() method
 
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        try {
            // creating and initializing LocalDate Object
            LocalDate hidate = LocalDate.now();
 
            // getting IsoChronology used in LocalDate
            IsoChronology crono = hidate.getChronology();
 
            // getting LocalDate for the
            // given date and year field
            // by using dateYearDay() method
            LocalDate date = crono.dateYearDay(1440, 24);
 
            // display the result
            System.out.println("LocalDate is: " + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can "
                               + "not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output: 

LocalDate is: 1440-01-24

 

Example 2: 
 

Java




// Java program to demonstrate
// dateYearDay() method
 
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        try {
            // creating and initializing LocalDate Object
            LocalDate hidate = LocalDate.now();
 
            // getting IsoChronology used in LocalDate
            IsoChronology crono = hidate.getChronology();
 
            // getting LocalDate for the
            // given date and year field
            // by using dateYearDay() method
            LocalDate date = crono.dateYearDay(999999999, 32);
 
            // display the result
            System.out.println("LocalDate is: " + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can "
                               + "not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}


Output: 

LocalDate is: +999999999-02-01

 

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/IsoChronology.html#dateYearDay-int-int-
 

RELATED ARTICLES

Most Popular

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6665 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS