Java Date Difference diff(Date sDate, Date fDate)

Here you can find the source of diff(Date sDate, Date fDate)

Description

diff

License

Apache License

Declaration

public static long diff(Date sDate, Date fDate) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2014 Likya Teknoloji/*w  ww.j  ava  2s .  com*/
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ******************************************************************************/

import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    public static long diff(Date sDate, Date fDate) {

        long timeDiff = fDate.getTime() - sDate.getTime();
        return timeDiff;
    }

    public static String getTime(Date executionTime) {
        SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss"); //$NON-NLS-1$
        return formatter.format(executionTime);
    }
}

Related

  1. daysDiff(Date d1, Date d2)
  2. diff(Date d1, Date d2)
  3. diff(Date date1, Date date2)
  4. diff(Date date1, Date date2)
  5. diff(Date endDate, Date startDate)
  6. diff(Date subtrahend, Date minuend, long diffField)
  7. diff(int type, Date date1, Date date2)
  8. diff_in_date(Date d1, Date d2, String type)
  9. diffBetweenMonth(Date d1, Date d2)