- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 即时
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - 周期
- java.time - 年
- java.time - 年月
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 包枚举
- java.time - 月
- java.time 实用资源
- java.time - 讨论
java.time.LocalDate.ofYearDay() 方法示例
描述
java.time.LocalDate.ofYearDay(int year, int dayOfYear) 方法从一个年份和一个年中某天获取 LocalDate 实例。
声明
以下为 java.time.LocalDate.ofYearDay(int year, int dayOfYear) 方法的声明。
public static LocalDate ofYearDay(int year, int dayOfYear)
public static LocalDate ofYearDay(int year, int dayOfYear)
参数
year - 将要表示的年份,从 MIN_YEAR 到 MAX_YEAR。
dayOfYear - 将要表示的年中某一天,从 1 到 366。
返回值
LocalDate,不为 null。
异常
DateTimeException - 如果任何字段的值超出范围,或者年中某天的日期对于该年份无效。
示例
package com.tutorialspoint; import java.time.LocalDate; public class LocalDateDemo { public static void main(String[] args) { LocalDate date = LocalDate.ofYearDay(2017,34); System.out.println(date); } }
实时示例
2017-02-03
打印页面
广告