I was working with LocalDateTime and trying to see if the purchase date(in my case) is withing last x units(days/hours)
I achieved this the following way
public static final int BOOK_PURCHASED_MIN_HOURS = 72;
private boolean isWithinAllowedMinTime(LocalDateTime purchaseDateTime) {
return !LocalDateTime.now(ZoneOffset.UTC).minusHours(BOOK_PURCHASED_MIN_HOURS ).isAfter(purchaseDateTime);
}
This works perfectly fine and gives me true or false if the book has been purchase in 72 hours
I was wondering something like this can be done but with Duration in java where I do not have to worry about time unit and simply can specify like PT03D or PT72H
Of course, you can do so. You can pass a duration string to your function and parse it to a
Duration
object to perform a calculation based on it.I also recommend you use
OffsetDateTime
instead ofLocalDateTime
so that you can use the same offset withOffsetDateTime#now
.Demo:
Output:
Learn more about the modern Date-Time API from Trail: Date Time.