简体   繁体   English

如何找到两个日期之间的差值的持续时间

[英]How to find the duration of difference between two dates

I have two dates, eg. 我有两个约会,例如。 1989-3-21, 2016-3-21 and I want to find the duration of difference between those dates. 1989-3-21、2016-3-21,我想找出两个日期之间的差值持续时间。 For this I am trying the following code but I am unable to get the duration of difference in dates. 为此,我正在尝试以下代码,但无法获得日期差异的持续时间。

public String getTimeDiff(Date dateOne, Date dateTwo) {
        String diff = "";
        long timeDiff = Math.abs(dateOne.getTime() - dateTwo.getTime());
        diff = String.format("%d hour(s) %d min(s)", TimeUnit.MILLISECONDS.toHours(timeDiff),
                TimeUnit.MILLISECONDS.toMinutes(timeDiff) - TimeUnit.HOURS.toMinutes(TimeUnit.MILLISECONDS.toHours(timeDiff)));
        return diff;
}

Initialize your dates like so before calling public String getTimeDiff(Date dateOne, Date dateTwo) : 像这样初始化日期,然后调用public String getTimeDiff(Date dateOne, Date dateTwo)

    Date dateOne=null,dateTwo=null;
    try {
        dateOne = new SimpleDateFormat( "yyyy-MM-dd" ).parse("2016-3-21");
        dateTwo =  new SimpleDateFormat( "yyyy-MM-dd" ).parse("1989-3-21");
    } 
    catch (ParseException ex) {     
    }
    System.out.println( getTimeDiff(dateOne,dateTwo));



    public String getTimeDiff(Date dateOne, Date dateTwo) {
        String diff = "";
        long timeDiff = Math.abs(dateOne.getTime() - dateTwo.getTime());
        diff = String.format("%d date(s) ", TimeUnit.MILLISECONDS.toDays(timeDiff));
        return diff;
    }

Since your Dates aren't in their default format you will have to use a SimpleDateFormat to explicitly declare the format of your Dates. 由于您的日期不是默认格式,因此必须使用SimpleDateFormat显式声明日期的格式。

From here 这里

    long diff = dt2.getTime() - dt1.getTime();
    long diffSeconds = diff / 1000 % 60;
    long diffMinutes = diff / (60 * 1000) % 60;
    long diffHours = diff / (60 * 60 * 1000);
    int diffInDays = (int) ((dt2.getTime() - dt1.getTime()) / (1000 * 60 * 60 * 24));

Try Using This 试试这个

try {
            /// String CurrentDate=  "10/6/2016";
            /// String PrviousDate=  "10/7/2015";
            Date date1 = null;
            Date date2 = null;
            SimpleDateFormat df = new SimpleDateFormat("MM/dd/yyyy");
            date1 = df.parse(CurrentDate);
            date2 = df.parse(PrviousDate);
            long diff = Math.abs(date1.getTime() - date2.getTime());
            long diffDays = diff / (24 * 60 * 60 * 1000);


            System.out.println(diffDays);

        } catch (Exception e) {
            System.out.println("exception " + e);
        }

Take the difference and and call the method; 求差并调用方法; long diff = dt2.getTime() - dt1.getTime(); 长差异= dt2.getTime()-dt1.getTime();

public static String toHumanReadableTime(long diff) {
        Long hour = TimeUnit.HOURS.convert(diff, TimeUnit.MILLISECONDS);
        diff= diff% (1000 * 60 * 60);
        Long minutes = TimeUnit.MINUTES.convert(diff, TimeUnit.MILLISECONDS);
        diff= diff% (1000 * 60);
        Long seconds = TimeUnit.SECONDS.convert(diff, TimeUnit.MILLISECONDS);
        diff= diff% 1000;
        Long milisec = diff;

        StringBuilder buffer = new StringBuilder();
        if (hour != null && hour > 0) {
            buffer.append(hour).append(" Hour ");
        }
        if (minutes != null && minutes > 0) {
            buffer.append(minutes).append(" Minute ");
        }
        buffer.append(seconds).append(" Second ");

        buffer.append(milisec).append(" Millisecond  ");

        return buffer.toString();
    }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM