其他分享
首页 > 其他分享> > 两个时间区间相差多少小时/分钟

两个时间区间相差多少小时/分钟

作者:互联网

 public long getExpireDate(String startDate, String endDate) {
        SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH");
        long nd = 1000 * 24 * 60 * 60;// 一天的毫秒数
        long nh = 1000 * 60 * 60;// 一小时的毫秒数
        try {
            // 获得两个时间的毫秒时间差异/一小时的毫秒数=相差多少个小时
            long hour = (sd.parse(endDate).getTime() - sd.parse(startDate).getTime()) / nh;// 计算差多少小时
            return hour;
        } catch (ParseException e) {
            logger.error("Setting issueStartDate too long ");
            return -1l;
        }
    }

  

标签:startDate,相差,long,分钟,60,毫秒,区间,小时,sd
来源: https://www.cnblogs.com/wangyunhong/p/16523812.html