java.time.LocalDateTime.adjustInto() Method Example



Description

The java.time.LocalDateTime.adjustInto(Temporal temporal) method adjusts the specified temporal object to have the same date and time as this object.

Declaration

Following is the declaration for java.time.LocalDateTime.adjustInto(Temporal temporal) method.

public Temporal adjustInto(Temporal temporal)

Parameters

temporal − the target object to be adjusted, not null.

Return Value

the adjusted object, not null.

Exceptions

  • DateTimeException − if unable to make the adjustment.

  • ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.LocalDateTime.adjustInto(Temporal temporal) method.

package com.tutorialspoint;

import java.time.LocalDateTime;
import java.time.ZonedDateTime;

public class LocalDateTimeDemo {
   public static void main(String[] args) {

      ZonedDateTime date = ZonedDateTime.now();
      System.out.println(date);  

      LocalDateTime date1 = LocalDateTime.parse("2017-02-03T12:30:30");
      date = (ZonedDateTime)date1.adjustInto(date);
      System.out.println(date);  
   }
}

Let us compile and run the above program, this will produce the following result −

2017-03-17T12:44:29.823+05:30[Asia/Calcutta]
2017-02-03T12:30:30+05:30[Asia/Calcutta]
Advertisements