Java获取时间差(天数差,小时差,分钟差)代码示例
程序员文章站
2024-04-01 20:31:28
网上有很多博文是讲如何获取时间差的,我看了一下,多数是使用calendar类来实现,但是都讲得比较乱,在这里我用simpledateformat来实现,比较简单,我认为比较...
网上有很多博文是讲如何获取时间差的,我看了一下,多数是使用calendar类来实现,但是都讲得比较乱,在这里我用simpledateformat来实现,比较简单,我认为比较适合拿来用。
simpledateformat 是一个以国别敏感的方式格式化和分析数据的具体类。 它允许格式化 (date -> text)、语法分析 (text -> date)和标准化。
simpledateformat 允许以为日期-时间格式化选择任何用户指定的方式启动。 但是,希望用 dateformat 中的 gettimeinstance、 getdateinstance 或 getdatetimeinstance 创建一个日期-时间格式化程序。 每个类方法返回一个以缺省格式化方式初始化的日期/时间格式化程序。 可以根据需要用 applypattern 方法修改格式化方式。
首先我们先初始化我们的simpledateformat
simpledateformat simpleformat = new simpledateformat("yyyy-mm-dd hh:mm");//如2016-08-10 20:40
1.计算天数差。
string fromdate = simpleformat.format("2016-05-01 12:00"); string todate = simpleformat.format("2016-06-01 12:00"); long from = simpleformat.parse(fromdate).gettime(); long to = simpleformat.parse(todate).gettime(); int days = (int) ((to - from)/(1000 * 60 * 60 * 24));
2.计算小时差
string fromdate = simpleformat.format("2016-05-01 12:00"); string todate = simpleformat.format("2016-05-01 14:00"); long from = simpleformat.parse(fromdate).gettime(); long to = simpleformat.parse(todate).gettime(); int hours = (int) ((to - from)/(1000 * 60 * 60));
3.计算分钟差:
string fromdate = simpleformat.format("2016-05-01 12:00"); string todate = simpleformat.format("2016-05-01 12:50"); long from = simpleformat.parse(fromdate).gettime(); long to = simpleformat.parse(todate).gettime(); int minutes = (int) ((to - from)/(1000 * 60));
总结
以上就是本文关于java获取时间差(天数差,小时差,分钟差)代码示例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:
如有不足之处,欢迎留言指出。