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:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse( "2018-11-27" );
System.out.println(dt.getDayOfYear());
}
}
|
Program 2:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDate dt = LocalDate.parse( "2018-01-02" );
System.out.println(dt.getDayOfYear());
}
}
|
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getDayOfYear()
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
28 Nov, 2018
Like Article
Save Article