java.time.ZonedDateTime.with(TemporalField field, long newValue)

2019-10-16 22:34:38

java.time.ZonedDateTime.with(TemporalField field,long newValue)方法返回此日期時間並將指定欄位設定為新值的副本。

宣告

以下是java.time.ZonedDateTime.with(TemporalField field,long newValue)方法的宣告。

public ZonedDateTime with(TemporalField field, long newValue)

引數

  • field - 要在結果中設定的欄位,不為null
  • newValue - 結果中欄位的新值。

返回值

基於此的ZonedDateTime進行調整,而不是null

例外

  • DateTimeException - 如果無法進行調整。
  • UnsupportedTemporalTypeException - 如果不支援該欄位。
  • ArithmeticException - 如果發生數位溢位。

範例

以下範例顯示了java.time.ZonedDateTime.with(TemporalField field,long newValue)方法的用法。

package com.yiibai;

import java.time.ZonedDateTime;
import java.time.temporal.ChronoField;

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(ChronoField.DAY_OF_MONTH,13);
      System.out.println(result);  
   }
}

編譯並執行上面的程式,這將產生以下結果 -

2017-03-13T12:25:38.492+05:30[Asia/Calcutta]