大数据技术的基础技能包括什么(大数据技术的基础是什么)
606
2022-05-29
日期时间类
Date 类
概述
代码展示
常用方法
DateFormat 类
构造方法
格式规则
常用方法
format 方法
parse 方法
练习
思路:
代码实现
Calendar 类
概念
常用方法
get/set 方法
add 方法
getTime 方法
Date 类
概述
java.util.Date类表示特定的瞬间, 精确到毫秒.
继续查阅 Date 类的描述, 发现 Date 拥有多个构造函数, 只是部分已经过时. 但是其中有未过时的构造函数可以把毫秒值转成日期对象.
public Date(): 分配 Date 对象并初始化此对象, 以表示分配它的时间 (精确到毫秒).
public Date(long date): 分配 Date 对象并初始化此对象, 以表示自从标准基准时间 (称为 “历元 (epoch)”, 即 1970 年 1 月 1 日 00:00:00 GMT) 以来的指定毫秒数.
代码展示
简单来说: 使用无参构造, 可以自动设置当前系统时间的毫秒时刻. 指定 long 类型的构造参数, 可以自定义毫秒时刻. 例如:
import java.util.Date; public class Test4 { public static void main(String[] args) { // 创建日期对象, 把当前的时间 System.out.println(new Date()); // 创建日期对象, 把当前时间的毫秒值转成日期对象 System.out.println(new Date(0L)); } } 输出结果: Thu Nov 26 17:50:49 EST 2020 Wed Dec 31 19:00:00 EST 1969
1
2
3
4
5
6
7
8
9
10
11
12
13
14
注: 在使用 println 方法是, 会自动调用 Date 类中的 toString 方法. Date 类对 Object 类中的 toString 方法进行了覆盖重写, 所以结果为指定格式的字符串.
常用方法
Date 类中的多数方法已经过时, 常用的方法有:
public long getTime(): 把日期对象转换成对应的时间毫秒值.
DateFormat 类
java.text.DateFormat是日期/时间格式化子类的抽象类. 我们通过这个类可以帮我们完成日期和文本之间的转换, 也就是可以在 Date 对象与 String 对象之间进行来回转换.
格式化: 按照是定的格式, 从 Date 对象转化为 String 对象
解析: 按照指定的格式, 从 String 对象转化为 Date 对象
构造方法
由于 DateFormat 为抽象类, 不能直接支援, 所以需要常用的子类java.text.SimpleDateFormat. 这个类需要一个模式 (格式) 来指定格式化或解析的标准. 构造方法为:
public SimpleDateFormat(String pattern): 用给定的模式和默认语言环境的日期格式符号构造 SimpleDataFormat. 参数 pattern 是一个字符串, 代表时间的自定义格式.
格式规则
常用的格式规则为:
注: 更详细的格式规则, 可以参考 SimpleDataFormat 类的 API 文档.
创建 SimpleDataFormat 对象的代码如下:
import java.text.DateFormat; import java.text.SimpleDateFormat; public class Test { public static void main(String[] args) { // 对应的日期格式如: 2020-11-26 16:06:38 DateFormat dateFormat = new SimpleDateFormat("yyy-MM-dd HH:mm:ss"); } }
1
2
3
4
5
6
7
8
9
常用方法
DataFormat 类的常用方法有:
public String format(Date date): 将 Date 对象格式化为字符串
public Date parse(String source): 将字符串解析为 Date 对象
format 方法
使用 format 方法的代码为:
import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; public class Test6 { public static void main(String[] args) { Date date = new Date(); // 创建日期格式对象, 在获取格式化对象时可以指定风格 DateFormat dateFormat = new SimpleDateFormat("yyyy年MM月dd日"); String str = dateFormat.format(date); System.out.println(str); // 输出结果: 2020年11月26日 } }
1
2
3
4
5
6
7
8
9
10
11
12
13
parse 方法
使用 parse 方法的代码为:
import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class Test7 { public static void main(String[] args) throws ParseException { DateFormat dateFormat = new SimpleDateFormat("yyyy年MM月dd日"); String str = "2020年11月26日"; Date date = dateFormat.parse(str); System.out.println(date); // 输出结果: Thu Nov 26 00:00:00 EST 2020 } }
1
2
3
4
5
6
7
8
9
10
11
12
13
练习
请使用日期时间相关的 API, 计算出一个人已经出生了多少天.
思路:
获取当前时间对应的毫秒值
获取自己出生日期对应的毫秒值
两个时间相减 (当前时间-出生日期)
代码实现
import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Scanner; public class Test { public static void main(String[] args) throws ParseException { System.out.println("请输入出生日期 格式 yyyy-MM-dd"); // 获取出生日期, 键盘输入 String birthday = new Scanner(System.in).next(); // 将字符串日期, 转成 Date 对象 // 创建 SimpleDateFormat 对象, 写日期模式 DateFormat df = new SimpleDateFormat("yyyy-MM-dd"); // 调用方法parse, 字符串转成日期对象 Date birthdayDate = df.parse(birthday); // 获取今天的日期对象 Date todayDate = new Date(); // 将两个日期转成毫秒值, Date类的方法getTime long birthdaySecond = birthdayDate.getTime(); long todaySecond = todayDate.getTime(); long secone = todaySecond - birthdaySecond; if (secone < 0){ System.out.println("还没出生呢"); } else { // 将毫秒准换为天 System.out.println(secone/1000/60/60/24); } } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Calendar 类
概念
日历我们都见过, ```java.util.Calendar``是日历类, 在 Date 后出现, 替换掉了许多 Date 的方法. 该类将所有可能用到的时间信息封装为静态成员变量, 方便获取. 日历类就是方便获取各个时间属性的.
Calendar 为抽象类, 由于语言敏感性, Calendar 类在创建对象时并非之间创建, 而是通过静态方法创建, 返回子类对象.
Calendar 静态方法
public static Calendar getInstance(): 使用默认时区和语言环境获得一个日历.
import java.util.Calendar; public class Test9 { public static void main(String[] args) { Calendar calendar = Calendar.getInstance(); } }
1
2
3
4
5
6
7
常用方法
根据 Calender 类的 API 文档, 常用方法有:
public int get(int field): 返回给定日历字段的值
public void set(int field, int value): 将给定的日历字段设置为给定值
public abstract void add(int field, int amount): 根据日历的规则, 为给定的日历字段添加或减去指定的时间量
public Date getTime(): 返回一个表示此 Calendar 时间值 (从历元到现在的毫秒偏移量) 的 Date 对象
Calendar 类中提供很多成员常量, 代表给定的日历字段:
get/set 方法
get 方法用来获取指定字段的值, set 方法用来设置指定字段的值. 代码如下:
import java.util.Calendar; public class Test10 { public static void main(String[] args) { // 创建Calendar对象 Calendar calendar = Calendar.getInstance(); // 获取年 int year = calendar.get(Calendar.YEAR); // 获取月 int month = calendar.get(Calendar.MONTH) + 1; // 获取日 int dayOfMonth = calendar.get(Calendar.DAY_OF_MONTH); String result = year + "年" + month + "月" + dayOfMonth + "日"; System.out.println(result); // 输出结果: 2020年11月26日 } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import java.util.Calendar; public class Test11 { public static void main(String[] args) { // 创建Calendar对象 Calendar calendar = Calendar.getInstance(); // 设置年 calendar.set(Calendar.YEAR, 2020); // 设置月 calendar.set(Calendar.MONTH, 0); // 设置日 calendar.set(Calendar.DAY_OF_MONTH, 26); } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
add 方法
add 方法可以对指定日历字段进行加减操作, 如果第二个参数为正数则加上偏移量, 反则减去偏移量. 代码如下:
import java.util.Calendar; public class Test12 { public static void main(String[] args) { Calendar calendar = Calendar.getInstance(); print(calendar); // 输出结果: 2020年11月26日 calendar.add(Calendar.DAY_OF_MONTH, 2); // 加2天 calendar.add(Calendar.YEAR, -3); // 减3年 print(calendar); // 输出结果: 2017年11月28日 } public static void print(Calendar calendar){ int year = calendar.get(Calendar.YEAR); int month = calendar.get(Calendar.MONTH) + 1; int dayOfMonth = calendar.get(Calendar.DAY_OF_MONTH); String result = year + "年" + month + "月" + dayOfMonth + "日"; System.out.println(result); } }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
getTime 方法
Calender 中的 getTime 方法并不是获取毫秒时刻, 而是拿到对应的 Date 对象.
import java.util.Calendar; import java.util.Date; public class Test13 { public static void main(String[] args) { Calendar calendar = Calendar.getInstance(); Date date = new Date(); System.out.println(date); // 输出结果: Thu Nov 26 23:28:46 EST 2020 } }
1
2
3
4
5
6
7
8
9
10
注: 西方星期的开始为周日, 中国为周一. 在 Calendar 类中, 月份的表示是以 0-11 代表 1-12 月. 日期是有大小关系的, 时间靠后, 时间越大.
API Java
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。