计算两个时间之间差了几天几小时几分几秒

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * 计算出两个时间之间相差了几天几小时几分钟几秒
 * @author zjhn-llq
 * @date 2019/10/19 11:06
 */
public class translateTimeUtil {

    public static String translateTime(Date start, Date end) {
        if (start == null || end == null) {
            return "";
        }
        long time = end.getTime() - start.getTime();
        long days = time / (1000 * 60 * 60 * 24);
        long hours = (time - days * (1000 * 60 * 60 * 24)) / (1000 * 60 * 60);
        long minutes = (time - days * (1000 * 60 * 60 * 24) - hours * (1000 * 60 * 60)) / (1000 * 60);
        long seconds = (time - days * (1000 * 60 * 60 * 24) - hours * (1000 * 60 * 60) - minutes * (1000 * 60)) / 1000;
        String descript = "";
        if (days > 0) {
            descript = descript + (days + "天");
        }
        if (hours > 0) {
            descript = descript + (hours + "小时");
        }
        if (minutes > 0) {
            descript = descript + (minutes + "分");
        }
        if (seconds > 0) {
            descript = descript + (seconds + "秒");
        }
        return descript;
    }

    /**
     * string类型转换为date类型
     * @param dateStr string类型的时间
     * @param pattern 转换的时间模式  yyyy-MM-dd HH:mm:ss
     * @return
     * @throws ParseException
     */
    public static Date stringToDate(String dateStr, String pattern) throws ParseException {
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);
        Date date = simpleDateFormat.parse(dateStr);
        return date;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值