码迷,mamicode.com
首页 > 其他好文 > 详细

两个日期相差的天数

时间:2014-07-18 09:01:58      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   art   io   for   

1 // 两个日期相差的天数
2     public int differDays(String startDateString, String endDateString)
3             throws ParseException {
4         SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
5         Date start = sdf.parse(startDateString);
6         Date end = sdf.parse(endDateString);
7         int differ = (int) ((end.getTime() - start.getTime()) / (3600 * 24 * 1000));
8         return differ;
9     }

两个日期相差的天数,布布扣,bubuko.com

两个日期相差的天数

标签:style   blog   color   art   io   for   

原文地址:http://www.cnblogs.com/crane-practice/p/3851170.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!