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

日期操作的相关类

时间:2018-01-21 23:58:33      阅读:371      评论:0      收藏:0      [点我收藏+]

标签:date()   mil   date   字符   long   get   gpo   before   led   

1 时间处理相关类

Date

Date date = new Date();
等同于
Date data = new Date(System.currentTimeMilis);
  • 常用方法
public long getTime()

public boolean before(Date date)

public boolean after(Date date)

public boolean equals(Object obj)//这个方法被重写了

Calendar

  • 时间计算的抽象类
  • GregorianCalendar继承了此类

DateFormat

  • 抽象类,SimpleDateFormat是其子类
  • 完成字符串(String)和时间对象(Date)的转化
  • format:Date转换字符串
  • parse:String转换成Date
DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
        
String string = df.format(date);// Date时间转换成字符串

System.out.println(string);
String s = "2017-12-31";
Date date2 = df.parse(s);// String时间转换成Date
System.out.println(date2);

日期操作的相关类

标签:date()   mil   date   字符   long   get   gpo   before   led   

原文地址:https://www.cnblogs.com/zhaod/p/8325930.html

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