Java获取时间差(天数差,小时差,分钟差) Java获取时间差(天数差,小时差,分钟差)代码示例

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Java获取时间差(天数差,小时差,分钟差) Java获取时间差(天数差,小时差,分钟差)代码示例

JeffCoding   2021-03-28 我要评论
想了解Java获取时间差(天数差,小时差,分钟差)代码示例的相关内容吗,JeffCoding在本文为您仔细讲解Java获取时间差(天数差,小时差,分钟差)的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:java,两个时间差天数,java,时间差,天数,java,计算时间差天数,下面大家一起来学习吧。

网上有很多博文是讲如何获取时间差的,我看了一下,多数是使用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获取时间差(天数差,小时差,分钟差)代码示例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站:

Java编程实现时间和时间戳相互转换实例

Java图片中显示当前时间的方法

如有不足之处,欢迎留言指出。

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们