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

日期剩余计算

时间:2016-04-26 13:58:07      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

package com.text;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

public class Text1 {
    /**
     * TODO(description of this method)
     * 
     * @param args
     * @author c99999999 kevin 2016年4月25日 下午6:57:24
     * @since v1.0
     */
    public static void main(String[] args) {
        SimpleDateFormat df1 = new SimpleDateFormat("yyyy-MM-dd");
        Date d = null;
        try {
            d = df1.parse("2015-1-26");
        } catch(ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        Calendar foretime = Calendar.getInstance();
        foretime.setTime(d);
        Calendar nowCalendar = Calendar.getInstance();
        int day = nowCalendar.get(Calendar.DAY_OF_MONTH) - foretime.get(Calendar.DAY_OF_MONTH);
        int month = nowCalendar.get(Calendar.MONTH) - foretime.get(Calendar.MONTH);
        int year = nowCalendar.get(Calendar.YEAR) - foretime.get(Calendar.YEAR);
        // 按照减法原理,先day相减,不够向month借;然后month相减,不够向year借;最后year相减。
        if(day < 0) {
            month -= 1;
            nowCalendar.add(Calendar.MONTH, -1);// 得到上一个月,用来得到上个月的天数。

            day = day + nowCalendar.getActualMaximum(Calendar.DAY_OF_MONTH);
        }
        if(month < 0) {
            month = (month + 12) % 12;
            year--;
        }
        System.out.println("结果:" + year + "年" + month + "月" + day + "天");
        for(int i = 0; i < month; i++) {
            nowCalendar.add(Calendar.MONTH, -1);// 得到上一个月,用来得到上个月的天数。

            day = day + nowCalendar.getActualMaximum(Calendar.DAY_OF_MONTH);
        }
        System.out.println("过去时间与现在有:" + year + "年" + "" + day + "天");

    }
}

 

日期剩余计算

标签:

原文地址:http://www.cnblogs.com/qcgAd/p/5434614.html

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