LocalDate getDayOfYear() example
Description
LocalDate getDayOfYear()
gets the day-of-year field. This method returns the primitive int value for the day-of-year.
Syntax
getDayOfYear
has the following syntax.
public int getDayOfYear()
Example
The following example shows how to use getDayOfYear
.
import java.time.LocalDate;
// w ww . j a v a 2s. c o m
public class Main {
public static void main(String[] args) {
LocalDate a = LocalDate.of(2014, 6, 30);
System.out.println(a.getDayOfYear());
}
}
The code above generates the following result.