java.time.LocalDate.atTime() Method Example



Description

The java.time.LocalDate.atTime(int hour, int minute) method combines this date with a time to create a LocalDateTime.

Declaration

Following is the declaration for java.time.LocalDate.atTime(int hour, int minute) method.

public LocalDateTime atTime(int hour, int minute)

Parameters

  • hour − the hour-of-day to use, from 0 to 23.

  • minute − the minute-of-hour to use, from 0 to 59.

Return Value

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

Exceptions

DateTimeException − if the value of any field is out of range.

Example

The following example shows the usage of java.time.LocalDate.atTime(int hour, int minute) method.

package com.tutorialspoint;

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

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

      LocalDate date = LocalDate.parse("2017-02-03");
      System.out.println(date);  
      LocalDateTime date1 = date.atTime(1,20);
      System.out.println(date1);  
   }
}

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

2017-02-03
2017-02-03T01:20
Advertisements