java.time.LocalDate.atTime() Method Example



Description

The java.time.LocalDate.atTime(LocalTime time) method combines this date with a time to create a LocalDateTime.

Declaration

Following is the declaration for java.time.LocalDate.atTime(LocalTime time) method.

public LocalDateTime atTime(LocalTime time)

Parameters

time − the time to combine with, not null.

Return Value

the local date-time formed from this date and the specified time, not null.

Example

The following example shows the usage of java.time.LocalDate.atTime(LocalTime time) method.

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;

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

      LocalDate date = LocalDate.parse("2017-02-03");
      System.out.println(date);  
      LocalTime time = LocalTime.parse("10:30:20");
      LocalDateTime date1 = date.atTime(time);
      System.out.println(date1);  
   }
}

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

2017-02-03
2017-02-03T10:30:20
Advertisements