ZonedDateTime with(TemporalField field, long newValue)
returns a copy of this date-time with the specified field set to a new value.
with
has the following syntax.
public ZonedDateTime with(TemporalField field, long newValue)
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.