Java Program to Calculate Time Difference In Hours

Chapter: Date and Time Last Updated: 20-09-2023 14:56:21 UTC

Program:

            /* ............... START ............... */
                

import java.time.LocalDateTime;
import java.time.Duration;

public class TimeDifferenceCalculator {
    public static void main(String[] args) {
        // Create two LocalDateTime objects representing two points in time
        LocalDateTime startTime = LocalDateTime.of(2023, 9, 20, 10, 0); // Replace with your start time
        LocalDateTime endTime = LocalDateTime.of(2023, 9, 20, 15, 30);   // Replace with your end time

        // Calculate the time difference in hours
        Duration duration = Duration.between(startTime, endTime);
        long hours = duration.toHours();

        // Display the result
        System.out.println("Time difference in hours: " + hours);
    }
}

                /* ............... END ............... */
        

Output

Time difference in hours: 5

In this example, the program calculates the time difference between a start 
time of "10:00 AM" and an end time of "3:30 PM," resulting in a time difference of 5 hours.

Notes:

  • In this example, you create two LocalDateTime objects, startTime and endTime, representing the two points in time for which you want to calculate the time difference. You then use Duration.between() to calculate the duration between these two times, and finally, you convert the duration to hours using toHours().

Tags

Java Program to Calculate Time Difference In Hours #How to get time difference in hours in Java? #Java program to find time difference in hours.

Similar Programs Chapter Last Updated
Java Code To Calculate Time Difference In Milliseconds Date and Time 20-09-2023
Java Program To Calculate Time Difference In Seconds Date and Time 20-09-2023
How to calculate time difference between two time zones in Java Date and Time 20-09-2023
Java Date And Time API To Create A Custom Calendar Date and Time 20-09-2023
How To Format Date And Time In Java Date and Time 16-09-2023
How Do You Get The First Day Of The Week In Java Date and Time 15-09-2023
Java Code To Change Date Format Date and Time 15-08-2023
Java Program To Find Day Of The Week For A Given Date Date and Time 10-08-2023
Java code to check if date is weekend Date and Time 29-06-2023
Java program to find number of days between two dates Date and Time 29-06-2023
Java Program To Get The Current Time In Different Time Zones Date and Time 22-06-2023
How To Add Working Days To A Date In Java Date and Time 22-06-2023
Java Program To Add A Specified Number Of Days To A Given Date Date and Time 22-06-2023
Write A Program To Check Leap Year In Java Date and Time 22-06-2023
Write A Program To Display Current Date And Time In Java Date and Time 22-06-2023
Java Date Format AM PM Date and Time 14-05-2023
Java Add Months To Date Date and Time 14-05-2023
Add Days To Date In Java example Date and Time 14-05-2023
Java Program To Calculate Days Between Two Dates Date and Time 16-04-2023
Java Program To Add Days To Date Date and Time 16-04-2023
How To Find Difference Between Two Dates In Java Date and Time 01-04-2023
Add Days To Date Java Example Date and Time 08-08-2021
Time Difference Between Two Timestamps In Java Date and Time 22-09-2018

1