SimpleDateFormat日期格式化类
构造
SimpleDateFormat(String pattern);
pattern是我们自己制定的日期格式,字母不能改变,但连接符可以改变
yyyy--MM--dd--HH
时间单位字母表示
|---|---|
| Y | 年 |
| M | 月 |
| d | 日 |
| H | 时 |
| m | 分 |
| s | 秒 |
方法
String format(Date date)将Date对象按照对应格式转成String
Date parse(String source)将符合我们构造对象时指定的日期格式的字符串转为Date对象
LocalDate与LocalDateTime
LocalDate与LocalDateTime是两个不可变时间对象,被final修饰
LocalDate为年月日,LocalDateTime为年月日时分秒
创建
创建,通过两个静态方法创建
static LocalDate/LocalDateTime now() 以目前时间创建对象
static LocalDate/LocalDateTime of(三个int传参/六个int传参) 创建对象,设置年月日或年月日时分秒
获取
获取对应日期字段
int getYear() 获取年份
int getMonthValue() 获取月份,不加Value获取的是枚举类型
int getDayOfMonth() 获取日
设置
设置对应日期,返回LocalDate或LocalDateTime对象,原对象内容不变
LocalDate/LocalDateTime withYear(int year) 设置年份
LocalDate/LocalDateTime withMonth(int month) 设置月份
LocalDate/LocalDateTime withDayOfMonth(int day) 设置日
可以链式设置
java
public class LocalDateText02 {
public static void main(String[] args) {
//of方式创建localDate对象
LocalDate localdate03 = LocalDate.of(2024,3,1);
//设置
LocalDate d2 = localdate03.withYear(2000);
LocalDate d3 = d2.withMonth(1);
LocalDate d4 = d3.withDayOfMonth(2);
//链式设置
LocalDate D = localdate03.withYear(2000).withMonth(1).withDayOfMonth(2);
//输出
System.out.println(localdate03);
System.out.println(d2);
System.out.println(d3);
System.out.println(d4);
System.out.println(D);
}
日期字段偏移
puls开头方法,向后偏移
minus开头方法,向前偏移
Period与Duration类,计算时间偏差
Period类
主要计算年月日
static Period between(LocalDate d1,LocalDate d2);计算两个日期之间的差值
非静态方法
getYears()获取相差的年
getMonths()获取相差的月
getDays() 获取相差的天
差值仅仅只是直接相减,比如2024-5-1与2020-4-1,月差值为1;
java
import java.time.LocalDate;
import java.time.Period;
public class PeriodText {
public static void main(String[] args) {
LocalDate date1 = LocalDate.of(2023,8,1);
LocalDate date2 = LocalDate.now();
//创建period对象
Period p1 = Period.between(date1,date2);
//获取差值
System.out.println(p1.getYears());
System.out.println(p1.getMonths());
System.out.println(p1.getDays());
}
}
Duration类
主要计算时分秒,相对精确,不同于Period类的直接相减,Durtion类计算的是实际的差值
利用静态方法创建Duration对象
static Duration between(Temporal statInclusive,Temporal endInclusive)
Temporal是一个接口,LocalDate和LocalDateTime都是Temporal的实现类,但我们传参传LocalDateTime对象,因为计算精确时间偏差。
偏差获取toDays() 获取相差天数
toHours() 获取相差小时
toMinutes() 获取相差分钟
toMillis() 获取相差秒
java
import java.time.Duration;
import java.time.LocalDate;
import java.time.LocalDateTime;
public class DurationText {
public static void main(String[] args) {
//创建LocalDaTeTime对象
LocalDateTime date3 = LocalDateTime.of(2023,9,1,10,10,27);
LocalDateTime date4 = LocalDateTime.now();
//创建DuraTion对象
Duration duration = Duration.between(date3,date4);
//获取
System.out.println(duration.toDays());
System.out.println(duration.toHours());
System.out.println(duration.toMinutes());
System.out.println(duration.toMillis());
}
}
DateTimeFormatter日期格式化类
static DateTimeFormatter ofPattern(String patttern);指定格式
String format(TemporalAccessor temporal) 将日期对象按照制定规则转换为String
TemporalAccessor是Temporal的父接口,而LocalDate,LocalDateTime的都是Temporal的实现类,所以也是TempoaralAccessor的实现类
TemporalAccessor parse(CahrSequence text) 将符合规则字符串转为日期对象
如果想要将TemporalAccessor转换为我们常见的LocalDateTime日期对象,就需要用到LocalDateTime中的静态方法from
static LocalDateTime from(TemporalAccessor temporal)
java
public class DateTimeFormatterText {
LocalDateTime date01 = LocalDateTime.now();
//指定转换规则
DateTimeFormatter formatter01 = DateTimeFormatter.ofPattern("YYYY-MM--dd HH:mm:ss");
//转换
String s = formatter01.format(date01);
TemporalAccessor temporal = formatter01.parse("2024--5--1 11:30:24");
LocalDateTime date02 = LocalDateTime.from(temporal);
}