计算一个时间距离今天还有多少天

 public static long getQuot(String time1, String time2){
  long quot = 0;
  SimpleDateFormat ft = new SimpleDateFormat("yyyy/MM/dd");
  try {
   Date date1 = ft.parse( time1 );
   Date date2 = ft.parse( time2 );
   quot = date1.getTime() - date2.getTime();
   quot = quot / 1000 / 60 / 60 / 24;
  } catch (ParseException e) {
   e.printStackTrace();
  }
  return quot;
 }

你可能感兴趣的:(计算一个时间距离今天还有多少天)