LocalDateTime withYear(int year) example
Description
LocalDateTime withYear(int year)
returns a copy of this LocalDateTime with the year altered.
Syntax
withYear
has the following syntax.
public LocalDateTime withYear(int year)
Example
The following example shows how to use withYear
.
import java.time.LocalDateTime;
/*w w w. j a va 2 s .c o m*/
public class Main {
public static void main(String[] args) {
LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
LocalDateTime t = a.withYear(2012);
System.out.println(t);
}
}
The code above generates the following result.