A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© fmi110 高级黑马   /  2015-10-3 15:22  /  364 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

a
  1. package demo;

  2. import java.text.ParseException;
  3. import java.text.SimpleDateFormat;
  4. import java.util.Calendar;

  5. public class CalcularTimeOfTwoDate {

  6.         /**
  7.          * 计算两个日期的时间间隔
  8.          *
  9.          * @throws Exception
  10.          */
  11.         public static void main(String[] args) throws Exception {
  12.                 String d1 = "2015-10-1";
  13.                 String d2 = "2015-09-28";
  14.                 getTimeOfTwoDate(d1, d2);
  15.                 Calendar c = Calendar.getInstance();
  16.         }

  17.         private static void getTimeOfTwoDate(String d1, String d2)
  18.                         throws ParseException {
  19.                 SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd");
  20.                 Long time = Math.abs(sf.parse(d1).getTime() - sf.parse(d2).getTime());
  21.                 System.out.println((int) (time / 1000 / 3600 / 24) + "天");
  22.         }

  23. }
复制代码


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马