ZonedDateTime getDayOfYear() example

Description

ZonedDateTime getDayOfYear() gets the day-of-year field.

Syntax

getDayOfYear has the following syntax.


public int getDayOfYear()

Example

The following example shows how to use getDayOfYear.


import java.time.ZonedDateTime;
//from ww  w.  j  av a 2  s  .  com
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.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset