java中計算兩個日期相差幾天

來源:互聯網
上載者:User

   1.public class Test {

  2.public void dateDiff(String startTime, String endTime, String format) {

  3.//按照傳入的格式產生一個simpledateformate對象

  4.SimpleDateFormat sd = new SimpleDateFormat(format);

  5.long nd = 1000*24*60*60;//一天的毫秒數

  6.long nh = 1000*60*60;//一小時的毫秒數

  7.long nm = 1000*60;//一分鐘的毫秒數

  8.long ns = 1000;//一秒鐘的毫秒數

  9.long diff;

  10.try {

  11.//獲得兩個時間的毫秒時間差異

  12.diff = sd.parse(endTime).getTime() - sd.parse(startTime).getTime();

  13.long day = diff/nd;//計算差多少天

  14.long hour = diff%nd/nh;//計算差多少小時

  15.long min = diff%nd%nh/nm;//計算差多少分鐘

  16.long sec = diff%nd%nh%nm/ns;//計算差多少秒

  17.//輸出結果

  18.System.out.println("時間相差:"+day+"天"+hour+"小時"+min+"分鐘"+sec+"秒。");

  19.} catch (ParseException e) {

  20.e.printStackTrace();

  21.}

  22.}

  23.

  24.

  25.public static void main(String[] args) {

  26.new Test().dateDiff(new SimpleDateFormat("yyyy-MM-dd").format(new Date()), "2010-8-23", "yyyy-MM-dd");

  27.}

  28.}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.