Java Date Time - ZonedDateTime with(TemporalField field, long newValue) example








ZonedDateTime with(TemporalField field, long newValue) returns a copy of this date-time with the specified field set to a new value.

Syntax

with has the following syntax.

public ZonedDateTime with(TemporalField field,   long newValue)

Example

The following example shows how to use with.

import java.time.ZonedDateTime;
import java.time.temporal.ChronoField;
/*from   w w w  .j av  a  2  s  .com*/
public class Main {
  public static void main(String[] args) {
    ZonedDateTime dateTime =ZonedDateTime.now();
    dateTime = dateTime.with(ChronoField.YEAR,2000);
    System.out.println(dateTime);
  } 
}

The code above generates the following result.