Java计算年月日时分秒时间差(两个时间相减)

Wesley13
• 阅读 741
//测试主方法
 public static void main(String[] args) {
         Date currentTime = df.parse("2004-03-26 13:31:40");   //当前系统时间   
         Date firstTime = df.parse("2004-01-02 11:30:24");     //查询的数据时间
         String str=getTime(currentTime ,firstTime );
         System.out.println("获取的年月日时分秒时间差为:"+str);
  }
  //获取时间差方法    
  public static String getTime(Date currentTime,Date firstTime){
          long diff = currentTime.getTime() - firstTime.getTime();//这样得到的差值是微秒级别
          Calendar  currentTimes =dataToCalendar(currentTime);//当前系统时间转Calendar类型
          Calendar  firstTimes =dataToCalendar(firstTime);//查询的数据时间转Calendar类型
          int year = currentTimes.get(Calendar.YEAR) - firstTimes.get(Calendar.YEAR);//获取年
          int month = currentTimes.get(Calendar.MONTH) - firstTimes.get(Calendar.MONTH);
          int day = currentTimes.get(Calendar.DAY_OF_MONTH) - firstTimes.get(Calendar.DAY_OF_MONTH); 
          if (day < 0) {
             month -= 1;
             currentTimes.add(Calendar.MONTH, -1);
             day = day + currentTimes.getActualMaximum(Calendar.DAY_OF_MONTH);//获取日
          }
          if (month < 0) {
             month = (month + 12) % 12;//获取月
             year--;
          }      
          long days = diff / (1000 * 60 * 60 * 24);           
          long hours = (diff-days*(1000 * 60 * 60 * 24))/(1000* 60 * 60); //获取时 
          long minutes = (diff-days*(1000 * 60 * 60 * 24)-hours*(1000* 60 * 60))/(1000* 60);  //获取分钟
          long s=(diff/1000-days*24*60*60-hours*60*60-minutes*60);//获取秒
          String CountTime=""+"year"+"年"+month+"月"+day+"天"+hours+"小时"+minutes+"分"+s+"秒";
          return CountTime;
    }  
    //Date类型转Calendar类型
    public static Calendar dataToCalendar(Date date) {
          Calendar calendar = Calendar.getInstance();
          calendar.setTime(date);
          return calendar;
    }
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Wesley13 Wesley13
3年前
java常用类(2)
三、时间处理相关类Date类:计算机世界把1970年1月1号定为基准时间,每个度量单位是毫秒(1秒的千分之一),用long类型的变量表示时间。Date分配Date对象并初始化对象,以表示自从标准基准时间(称为“历元”(epoch),即1970年1月1日08:00:00GMT)以来的指定毫秒数。示例:packagecn.tanjian
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
皕杰报表(关于日期时间时分秒显示不出来)
在使用皕杰报表设计器时,数据据里面是日期型,但当你web预览时候,发现有日期时间类型的数据时分秒显示不出来,只有年月日能显示出来,时分秒显示为0:00:00。1.可以使用tochar解决,数据集用selecttochar(flowdate,"yyyyMMddHH:mm:ss")fromtablename2.也可以把数据库日期类型date改成timestamp
Wesley13 Wesley13
3年前
Java爬虫之JSoup使用教程
title:Java爬虫之JSoup使用教程date:201812248:00:000800update:201812248:00:000800author:mecover:https://imgblog.csdnimg.cn/20181224144920712(https://www.oschin
Wesley13 Wesley13
3年前
Java日期时间API系列31
  时间戳是指格林威治时间1970年01月01日00时00分00秒起至现在的总毫秒数,是所有时间的基础,其他时间可以通过时间戳转换得到。Java中本来已经有相关获取时间戳的方法,Java8后增加新的类Instant等专用于处理时间戳问题。 1获取时间戳的方法和性能对比1.1获取时间戳方法Java8以前
Stella981 Stella981
3年前
Python之time模块的时间戳、时间字符串格式化与转换
Python处理时间和时间戳的内置模块就有time,和datetime两个,本文先说time模块。关于时间戳的几个概念时间戳,根据1970年1月1日00:00:00开始按秒计算的偏移量。时间元组(struct_time),包含9个元素。 time.struct_time(tm_y
Stella981 Stella981
3年前
HIVE 时间操作函数
日期函数UNIX时间戳转日期函数: from\_unixtime语法:   from\_unixtime(bigint unixtime\, string format\)返回值: string说明: 转化UNIX时间戳(从19700101 00:00:00 UTC到指定时间的秒数)到当前时区的时间格式举例:hive   selec
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。