El método withMonth() de la clase OffsetDateTime en Java devuelve una copia de este OffsetDateTime con el mes del año modificado como se especifica en el parámetro.
Sintaxis:
public OffsetDateTime withMonth(int month)
Parámetro: este método acepta un solo parámetro mes que especifica el mes del año que se establecerá en el resultado que puede variar de 1 a 12.
Valor devuelto: Devuelve un OffsetDateTime basado en esta fecha con el mes del año solicitado y no nulo.
Excepciones : el programa lanza una excepción DateTimeException cuando el valor del mes del año no es válido.
Los siguientes programas ilustran el método withMonth() :
Programa 1:
// Java program to demonstrate the withMonth() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00"); // Prints dates System.out.println("Date1: " + date1); // Changes the month-of-year System.out.println("Date1 after altering month-of-year: " + date1.withMonth(10)); } }
Producción:
Date1: 2018-12-12T13:30:30+05:00 Date1 after altering month-of-year: 2018-10-12T13:30:30+05:00
Programa 2:
// Java program to demonstrate the withMonth() method import java.time.OffsetDateTime; public class GFG { public static void main(String[] args) { try { // Parses the date1 OffsetDateTime date1 = OffsetDateTime .parse( "2018-12-12T13:30:30+05:00"); // Prints dates System.out.println("Date1: " + date1); // Changes the minute of day System.out.println("Date1 after altering month-of-year: " + date1.withMonth(27)); } catch (Exception e) { System.out.println("Exception: " + e); } } }
Producción:
Date1: 2018-12-12T13:30:30+05:00 Exception: java.time.DateTimeException: Invalid value for MonthOfYear (valid values 1 - 12): 27
Referencia : https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#withMonth(int)