ZonedDateTime getDayOfYear()
gets the day-of-year field.
getDayOfYear
has the following syntax.
public int getDayOfYear()
The following example shows how to use getDayOfYear
.
import java.time.ZonedDateTime; public class Main { public static void main(String[] args) { ZonedDateTime dateTime =ZonedDateTime.now(); System.out.println(dateTime.getDayOfYear()); } }
The code above generates the following result.