首页 > 代码库 > Java比较日期
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())); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。