Thursday, October 23, 2025
HomeLanguagesJavaOffsetTime atDate() method in Java with examples

OffsetTime atDate() method in Java with examples

The atDate() method of OffsetTime class in Java combines this time with a date to create a OffsetDateTime.

Syntax :

public OffsetDateTime atDate(LocalDate date)

Parameter: This method accepts a single parameter date which specifies the date to combine with, not null.

Return Value: It returns the OffsetDateTime formed from this time and the specified date, not null

Below programs illustrate the atDate() method:

Program 1 :




// Java program to demonstrate the atDate() method
  
import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
        // parses the current date
        LocalDate date = LocalDate.now();
        System.out.println("Current date: " + date);
  
        // Parses the current time
        OffsetTime time = OffsetTime.parse("11:10:10+06:03");
        OffsetDateTime datetime = time.atDate(date);
        System.out.println("Current date and time: " + datetime);
    }
}


Output:

Current date: 2018-12-31
Current date and time: 2018-12-31T11:10:10+06:03

Program 2 :




// Java program to demonstrate the atDate() method
  
import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
        // parses the current date
        LocalDate date = LocalDate.now();
        System.out.println("Current date: " + date);
  
        // Parses the current time
        OffsetTime time = OffsetTime.parse("12:15:14+16:03");
        OffsetDateTime datetime = time.atDate(date);
        System.out.println("Current date and time: " + datetime);
    }
}


Output:

Current date: 2018-12-31
Current date and time: 2018-12-31T12:15:14+16:03

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#atDate-java.time.LocalDate-

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS