Java OffsetDateTime withYear()方法及示例
Java中OffsetDateTime类的 withYear() 方法返回该OffsetDateTime的副本,并按照参数中指定的年份进行修改。
语法
public OffsetDateTime withYear(int year)
参数: 该方法接受一个单一的参数 year ,指定要在结果中设置的年份,范围从MIN_YEAR到MAX_YEAR。
返回值: 它返回一个基于该日期的OffsetDateTime,并带有所要求的年份且不为空。
异常 :当年份值无效时,该程序会抛出一个 DateTimeException 。
下面的程序说明了withYear()方法。
程序1 :
// Java program to demonstrate the withYear() method
import java.time.OffsetDateTime;
public class GFG {
public static void main(String[] args)
{
// Parses the date1
OffsetDateTime date1
= OffsetDateTime
.parse(
"2018-12-12T13:30:30+05:00");
// Prints dates
System.out.println("Date1: " + date1);
// Changes the year
System.out.println("Date1 after altering year: "
+ date1.withYear(2019));
}
}
输出。
Date1: 2018-12-12T13:30:30+05:00
Date1 after altering year : 2019-12-12T13:30:30+05:00
程序2
// Java program to demonstrate the withYear() method
import java.time.OffsetDateTime;
public class GFG {
public static void main(String[] args)
{
// Parses the date1
OffsetDateTime date1
= OffsetDateTime
.parse(
"2018-12-12T13:30:30+05:00");
// Prints dates
System.out.println("Date1: " + date1);
// Changes the year
System.out.println("Date1 after altering year: "
+ date1.withYear(2010));
}
}
输出。
Date1: 2018-12-12T13:30:30+05:00
Date1 after altering year: 2010-12-12T13:30:30+05:00
参考资料 : https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#withYear(int)