How to compare Joda DateTime objects with acceptable offset (tolerance)?

陌路散爱 提交于 2019-12-12 08:50:05

问题


I wonder is there any standard API in JodaTime to compare 2 DateTime objects with specified tolerance? I am looking for a one-liner preferably by using Joda standard API. Not for time-aritmethic expressions like in this post.

Ideally, it would be something like:

boolean areNearlyEqual = SomeJodaAPIClass.equal(dt1, dt2, maxTolerance);

Thanks!


回答1:


Use this:

new Duration(dt1, dt2).isShorterThan(Duration.millis(maxTolerance))



回答2:


This post is old, but I find the line in the accepted solution a bit long and I found nothing better in what exists. So I did a small class that wraps it for Date and DateTime :

public class DateTimeUtils
{
    public static boolean dateIsCloseToNow(Date dateToCheck,
                                           Duration tolerance)
    {
        return dateIsCloseToNow(new DateTime(dateToCheck), tolerance);
    } 

    public static boolean dateIsCloseToNow(DateTime dateToCheck,
                                           Duration tolerance)
    {
        return datesAreClose(dateToCheck, DateTime.now(), tolerance);
    }

    public static boolean datesAreClose(Date date1,
                                        Date date2,
                                         Duration tolerance)
    {
        return datesAreClose(new DateTime(date1), new DateTime(date2), tolerance);
    }

    public static boolean datesAreClose(DateTime date1,
                                         DateTime date2,
                                         Duration tolerance)
    {
        if (date1.isBefore(date2)) {
            return new Duration(date1, date2).isShorterThan(tolerance);
        }
        return new Duration(date2, date1).isShorterThan(tolerance);
    }

so this line :

new Duration(date.getTime(), System.currentTimeMillis()).isShorterThan(Duration.standardSeconds(5)

becomes :

DateUtils.dateIsCloseToNow(date, Duration.standardSeconds(5))

I found that really useful in unit test cases where I needed to validate a creation date.



来源:https://stackoverflow.com/questions/11280890/how-to-compare-joda-datetime-objects-with-acceptable-offset-tolerance

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!