美文网首页
17.03.23 计算两个时间的分钟差

17.03.23 计算两个时间的分钟差

作者: 薛定谔的猴子 | 来源:发表于2017-03-23 18:32 被阅读55次

    计算两个时间的分钟差

    SimpleDateFormat simpleFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    
    Date now = new Date();//现在的时间
    java.util.Date d2 = simpleFormat.parse("2017-03-23 15:15:12");//旧的时间
    
    String toDate = simpleFormat.format(now);
    String fromDate = simpleFormat.format(d2);
    
    long from = simpleFormat.parse(fromDate).getTime();
    long to = simpleFormat.parse(toDate).getTime();
    
    int minutes = (int) ((to - from) / (1000 * 60));
    

    相关文章

      网友评论

          本文标题:17.03.23 计算两个时间的分钟差

          本文链接:https://www.haomeiwen.com/subject/yfutottx.html