OffsetDateTime getDayOfYear() example
Description
OffsetDateTime 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.OffsetDateTime;
/*from w w w. j a v a 2 s . com*/
public class Main {
public static void main(String[] args) {
OffsetDateTime o = OffsetDateTime.now();
int l = o.getDayOfYear();
System.out.println(l);
}
}
The code above generates the following result.