The
ofYearDay(int year, int dayOfYear) method of
LocalDate class in Java is used to obtain an instance of
LocalDate from an input year and day-of-year. Here no value of the month is passed. The passed year forms the year of the instance and the day and month are calculated on the basis of dayOfYear. Here 1st January forms the starting day. So, if dayOfYear is passed as 32, it means that the first 31 days form the month of January and the 32nd day is 1st of February.
Syntax:
public static LocalDate
ofYearDay(int year,
int dayOfYear)
Parameters: This method accepts two parameters:
- year - It is of Integer type and represents the year. It varies from MIN_YEAR to MAX_YEAR.
- dayOfYear - It is of Integer type and represents the day of the year. It varies from 1 to 366.
Return Value: This method returns the
localdate.
Exceptions: This method throws
DateTimeException if the value of any field is out of range or the day-of-year is invalid.
Below programs illustrate the ofYearDay(int year, int dayOfYear) method in Java:
Program 1:
Program 2: