时间日期相关类:Date类,DateFormat类&SimpleDateFormat类,Calendar类

Posted elvin-j-x

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间日期相关类:Date类,DateFormat类&SimpleDateFormat类,Calendar类相关的知识,希望对你有一定的参考价值。

日期相关类

1、Date类:日期时间类

A、构造方法

Date(); 根据当前系统时间创建日期对象 ? Date(Long time);根据传入的毫秒值时间创建日期对象

B、成员方法

Long getTime(); 获取当前的日期对象的毫秒值时间

String toLocaleString(); 根据本地格式转换日期对象

2、DateFormat类&SimpleDateFormat类

A、构造方法

SimpleDateFormat(String s); 根据指定模板创建日期格式化对象

B、成员方法

String format(Date date); 根据指定格式【模式】格式化日期对象成文本【字符串】

Date Parse(String s); 根据指定格式【模式】解析文本【字符串】成日期

3、Calendar类:日历类

A、创建对象方式

Calendar c = Calendar.getInstance(); 获取日历类对象

B、成员方法

int get(int field); 获取指定日历字段信息

void set(int field,int value); 将指定日历字段设置成指定的值

void add(int field,int amount);将指定日历字段增加或减少指定的值

 

 

以上是关于时间日期相关类:Date类,DateFormat类&SimpleDateFormat类,Calendar类的主要内容,如果未能解决你的问题,请参考以下文章

Date类DateFormat类和Calendar类

Java中的Date类DateFormat类Calendar类

Java中的Date类DateFormat类Calendar类

JAVA进阶篇时间与日期相关类

Java日期处理

JAVA-基础-常用API(时间日期类,Date,Dateformat,Calendar)