LocalDateTime withMonth(int month) example

Description

LocalDateTime withMonth(int month) returns a copy of this LocalDateTime with the month-of-year altered.

Syntax

withMonth has the following syntax.


public LocalDateTime withMonth(int month)

Example

The following example shows how to use withMonth.


import java.time.LocalDateTime;
//from   www . ja va 2s.  c  om
public class Main {
  public static void main(String[] args) {
    LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01);
    
    LocalDateTime t = a.withMonth(2);
    
    System.out.println(t);
  }
}

The code above generates the following result.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset