标签: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比较日期
原文地址:http://blog.csdn.net/zl544434558/article/details/24966825