java.time.LocalDateTime.with(TemporalField field, long newValue)方法

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

聲明

以下是java.time.LocalDateTime.with(TemporalField field, long newValue)方法的聲明。

public LocalDateTime with(TemporalField field, long newValue)

參數

  • field - 要在結果中設置的字段,不為null
  • newValue - 結果中字段的新值。

返回值

一個LocalDateTime基於此進行調整,而不是null

異常

  • DateTimeException - 如果無法進行調整。
  • UnsupportedTemporalTypeException - 如果不支持該字段。
  • ArithmeticException - 如果發生數字溢出。

示例

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

package com.zaixian;

import java.time.LocalDateTime;
import java.time.temporal.ChronoField;

public class LocalDateTimeDemo {
   public static void main(String[] args) {

      LocalDateTime date = LocalDateTime.parse("2017-01-03T10:15:30");
      LocalDateTime result = date.with(ChronoField.DAY_OF_MONTH,13);
      System.out.println(result);
   }
}

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

2017-01-13T10:15:30

上一篇: java.time.LocalDateTime類 下一篇: java.time.LocalTime類