java.time.OffsetDateTime.with(TemporalField field, long newValue)
方法返回此日期時間的副本,並將指定欄位設定為新值。
以下是java.time.OffsetDateTime.with(TemporalField field, long newValue)
方法的宣告。
public OffsetDateTime with(TemporalField field, long newValue)
field
- 要在結果中設定的欄位,不為null
。newValue
- 結果中欄位的新值。一個OffsetDateTime
基於此進行調整,而不是null
。
DateTimeException
- 如果無法進行調整。UnsupportedTemporalTypeException
- 如果不支援該欄位。ArithmeticException
- 如果發生數位溢位。以下範例顯示了java.time.OffsetDateTime.with(TemporalField field,long newValue)
方法的用法。
package com.yiibai;
import java.time.OffsetDateTime;
import java.time.temporal.ChronoField;
public class OffsetDateTimeDemo {
public static void main(String[] args) {
OffsetDateTime date = OffsetDateTime.parse("2017-01-03T10:15:30+01:00");
OffsetDateTime result = date.with(ChronoField.DAY_OF_MONTH,13);
System.out.println(result);
}
}
執行上面範例程式碼,得到以下結果:
2017-07-31T10:15:30+01:00