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

比较两个日期的大小

时间:2014-09-28 17:10:43      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   on   

/**
     * 比较两个日期的大小:
     * 2 发生异常
     * 1 firstDate>secondDate
     * 0 firstDate==secondDate
     * -1 firstDate<secondDate
     * @param format
     * @param firstDate
     * @param secondDate
     * @return 
     */
    public static int compareDate(String format,String firstDate, String secondDate){
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        int result = 2;
        try {
            Date fDate = sdf.parse(firstDate);
            Date sDate = sdf.parse(secondDate);
            
            if(fDate.getTime()>sDate.getTime()){
                result = 1;
            }else if(fDate.getTime()==sDate.getTime()){
                result = 0;
            }else{
                result = -1;
            }
        } catch (ParseException ex) {
            Logger.getLogger(DateUtil.class.getName()).log(Level.SEVERE, null, ex);
        }
        return result;
    }

 

比较两个日期的大小

标签:style   blog   color   io   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/yshyee/p/3998273.html

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