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








Instant with(TemporalField field, long newValue) returns a copy of this instant with the specified field set to a new value.

Syntax

with has the following syntax.

public Instant with(TemporalField field,  long newValue)

Example

The following example shows how to use with.

import java.time.Instant;
import java.time.temporal.ChronoField;
/*from  ww w.  java2  s .c  om*/
public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    instant = instant.with(ChronoField.MILLI_OF_SECOND,20);
    System.out.println(instant);
 
  }
}

The code above generates the following result.