Java OffsetDateTime withMonth()方法及示例
Java中OffsetDateTime类的 withMonth() 方法返回该OffsetDateTime的副本,并按参数中指定的年月日进行更改。
语法
public OffsetDateTime withMonth(int month)
参数: 该方法接受一个单一的参数 month ,指定要在结果中设置的年月日,范围是1到12。
返回值: 它返回一个基于该日期的OffsetDateTime,该日期为所要求的年月日,且不为空。
异常 :当年月日的值无效时,程序会抛出一个 DateTimeException 。
下面的程序说明了withMonth()方法。
程序1 :
// Java program to demonstrate the withMonth() method
import java.time.OffsetDateTime;
import java.time.ZonedDateTime;
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 month-of-year
System.out.println("Date1 after altering month-of-year: "
+ date1.withMonth(10));
}
}
输出。
Date1: 2018-12-12T13:30:30+05:00
Date1 after altering month-of-year: 2018-10-12T13:30:30+05:00
程序2
// Java program to demonstrate the withMonth() method
import java.time.OffsetDateTime;
public class GFG {
public static void main(String[] args)
{
try {
// Parses the date1
OffsetDateTime date1
= OffsetDateTime
.parse(
"2018-12-12T13:30:30+05:00");
// Prints dates
System.out.println("Date1: " + date1);
// Changes the minute of day
System.out.println("Date1 after altering month-of-year: "
+ date1.withMonth(27));
}
catch (Exception e) {
System.out.println("Exception: " + e);
}
}
}
输出。
Date1: 2018-12-12T13:30:30+05:00
Exception: java.time.DateTimeException: Invalid value for MonthOfYear (valid values 1 - 12): 27
参考资料 : https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#withMonth(int)