Thursday, September 4, 2025
HomeLanguagesJavaLocalDate getDayOfYear() method in Java with Examples

LocalDate getDayOfYear() method in Java with Examples

The getDayOfYear() method of LocalDate class in Java gets the day-of-year field.

Syntax:

public int getDayOfYear()

Parameter: This method does not accepts any parameter.

Return Value: The function returns the day of the year which is in range [1, 365/366] depending on leap year or not.

Below programs illustrate the getDayOfYear() method of LocalDate in Java:

Program 1:




// Program to illustrate the getDayOfYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-11-27");
  
        // Prints the day number
        System.out.println(dt.getDayOfYear());
    }
}


Output:

331

Program 2:




// Program to illustrate the getDayOfYear() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-01-02");
  
        // Prints the day number
        System.out.println(dt.getDayOfYear());
    }
}


Output:

2

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32261 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6626 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6695 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS