java.time.ZonedDateTime.with(TemporalAdjuster adjuster)
方法返回此日期時間的調整副本。
以下是java.time.ZonedDateTime.with(TemporalAdjuster adjuster)
方法的宣告。
public ZonedDateTime with(TemporalAdjuster adjuster)
adjuster
- 要使用的調整器,而不是null
。基於此的ZonedDateTime
進行調整,而不是null
。
DateTimeException
- 如果無法進行調整。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.ZonedDateTime.with(TemporalAdjuster adjuster)
方法的用法。
package com.yiibai;
import java.time.ZonedDateTime;
import java.time.Month;
import java.time.temporal.TemporalAdjusters;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.parse("2017-03-28T12:25:38.492+05:30[Asia/Calcutta]");
ZonedDateTime result = date.with(Month.JULY).with(TemporalAdjusters.lastDayOfMonth());
System.out.println(result);
}
}
編譯並執行上面的程式,這將產生以下結果 -
2017-07-31T12:25:38.492+05:30[Asia/Calcutta]