LocalDate getDayOfYear()
gets the day-of-year field. This method returns the primitive int value for the day-of-year.
getDayOfYear
has the following syntax.
public int getDayOfYear()
The following example shows how to use getDayOfYear
.
import java.time.LocalDate; 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.