Java ChronoZonedDateTime with(TemporalAdjuster)方法及实例
ChronoZonedDateTime 接口的 with(TemporalAdjuster adjuster) 方法用于使用TemporalAdjuster来调整这个日期时间,并在调整后返回调整后的日期时间的副本。调整是使用指定的调整器策略对象进行的。这个ChronoZonedDateTime的实例是不可改变的,不受这个方法调用的影响。一个简单的调整器用于设置其中一个字段,如年份字段,更复杂的调整器可能将时间设置为一年的最后一天。
语法
default ChronoZonedDateTime with(TemporalAdjuster adjuster)
参数: 该方法接受 调整器 作为参数,它是要使用的调整器。
返回值: 该方法返回一个基于该调整器的ChronoZonedDateTime。
异常: 该方法会抛出以下异常。
- DateTimeException – 如果不能进行调整。
- ArithmeticException – 如果发生数字溢出。
下面的程序说明了with()方法。
程序1 :
// Java program to demonstrate
// ChronoZonedDateTime.with() method
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create ChronoZonedDateTime object
ChronoZonedDateTime time
= ZonedDateTime
.parse(
"1918-10-25T23:12:38.543+02:00[Europe/Paris]");
// print instance
System.out.println("ChronoZonedDateTime before"
+ " adjustment: "
+ time);
// apply with method of ChronoZonedDateTime
ChronoZonedDateTime updatedlocal
= time.with(Month.OCTOBER)
.with(TemporalAdjusters
.firstDayOfMonth());
// print instance
System.out.println("ChronoZonedDateTime after"
+ " adjustment: "
+ updatedlocal);
}
}
输出:
ChronoZonedDateTime before adjustment: 1918-10-25T23:12:38.543Z[Europe/Paris]
ChronoZonedDateTime after adjustment: 1918-10-01T23:12:38.543+01:00[Europe/Paris]
程序2
// Java program to demonstrate
// ChronoZonedDateTime.with() method
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create ChronoZonedDateTime object
ChronoZonedDateTime time
= ZonedDateTime
.parse(
"2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
// print instance
System.out.println("ChronoZonedDateTime before"
+ " adjustment: "
+ time);
// apply with method of ChronoZonedDateTime
ChronoZonedDateTime updatedlocal
= time.with(Month.JANUARY)
.with(TemporalAdjusters
.firstDayOfMonth());
// print instance
System.out.println("ChronoZonedDateTime after"
+ " adjustment: "
+ updatedlocal);
}
}
输出:
ChronoZonedDateTime before adjustment: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
ChronoZonedDateTime after adjustment: 2018-01-01T19:21:12.123+05:30[Asia/Calcutta]
参考资料: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#with-java.time.temporal.TemporalAdjuster-