Calculate Time Ago in Java

06 May 2023 Balmiki Mandal 0 Core Java

How to Calculate “Time Ago” in Java

The concept of “time ago” is a popular one that many developers use to describe the relative time since an event happened. The nice thing about the concept is that it can be used in different contexts such as for date or for time, making it quite versatile. In this article, we’ll look at how to calculate “time ago” in Java.

Java Date and Time Library

Recent versions of Java come with a library for manipulation of date and time (JSR-310). This library includes classes such as LocalDateTime, LocalDate, Instant, Year, Month, DayOfWeek and more. With these classes, you can perform operations on instances of these classes to calculate “time ago.”

For example, if you have an instance of LocalDateTime that represents 5 minutes ago and want to get a string representation of the duration in terms of days, hours, minutes and seconds, then you can use the java.time.Duration class to do this.

Example Code for Calculating Time Ago

Here is some example code for calculating “time ago” in Java using the java.time library:

LocalDateTime now = LocalDateTime.now();
LocalDateTime fiveMinutesAgo = now.minusMinutes(5);

Duration duration = Duration.between(fiveMinutesAgo, now);

long days = duration.toDays();
long hours = duration.minusDays(days).toHours(); 
long minutes = duration.minusHours(hours).toMinutes();
long seconds = duration.minusMinutes(minutes).getSeconds();

String durationString = String.format("%d days, %d hours, %d minutes, %d seconds", days, hours, minutes, seconds); 

System.out.println("5 minutes ago was: " + durationString);

In this example code, we first create two LocalDateTime instances, one representing the current time and one representing 5 minutes ago. We then create a Duration instance by passing in both LocalDateTime instances. Finally, we calculate the number of days, hours, minutes and seconds in between the times and print out a string representation of the duration.

With the above code, you should be able to easily calculate “time ago” in Java using the java.time library. Keep in mind that this library is only available in recent versions of Java, so be sure to check the version compatibility before using it.

BY: Balmiki Mandal

Related Blogs

Post Comments.

Login to Post a Comment

No comments yet, Be the first to comment.