码迷,mamicode.com
首页 > 编程语言 > 详细

Java比较日期

时间:2014-05-04 18:23:07      阅读:355      评论:0      收藏:0      [点我收藏+]

标签:java比较日期

  在Java中比较日期有API可以直接调用。实现源码如下:

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

public class JavaDateCompare {
    public static void main(String[] args) {

        DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Calendar calendar = Calendar.getInstance();//日历对象  
        calendar.setTime(new Date());//设置当前日期  
        calendar.add(Calendar.MONTH, -1);//月份减一  
        System.out.println(format.format(new Date()));//输出当前时间  
        System.out.println(format.format(calendar.getTime()));//输出上个月的日期  
        /*
         * the value 0 if the argument Date is equal to this Date; 
         * a value less than 0 if this Date is before the Date argument;
         * and a value greater than 0 if this Date is after the Date argument.
         * 翻译成白话就是:
         *如果对象日期和参数日期相等 返回值为0
         *如果对象日期在参数日期之前返回-1 比如 2014-5-4.compareTo(2014-6-4)返回值为-1 
         *如果对象日期在参数日期之后返回1  比如2014-5-4.compareTo(2014-4-4)返回值为1
         */
        System.out.println(new Date().compareTo(calendar.getTime()));

    }
}


Java比较日期,布布扣,bubuko.com

Java比较日期

标签:java比较日期

原文地址:http://blog.csdn.net/zl544434558/article/details/24966825

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