Open In App

LocalDate getDayOfYear() method in Java with Examples

Last Updated : 28 Nov, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
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: Java
// 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: Java
// 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()

Next Article
Practice Tags :

Similar Reads