Java-JDK8中的时间Api(java.time
)
1. 本地日期、本地时间、本地日期时间的使用:LocalDate / LocalTime / LocalDateTime
package com.lmw.time;
import org.junit.Test;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
/**
* @author
* @version 1.0.0
* @createTime 2022/5/17 15:55
* @description
*/
public class Jdk8DateTimeTest {
@Test
public void test() {
// now()
LocalDate localDate = LocalDate.now();
System.out.println(localDate); // 获取当前日期
LocalTime localTime = LocalTime.now();
System.out.println(localTime); // 获取当前时间
LocalDateTime localDateTime = LocalDateTime.now();
System.out.println(localDateTime);// 获取当前日期时间
// of() LocalDateTime使用频率较高,使所以使用LocalDateTime类举例,其他两个类中也有这些方法
LocalDateTime time1 = LocalDateTime.of(2022, 5, 17, 12, 12, 13);
System.out.println(time1); // 设置指定的年月日,时分秒
// get()
System.out.println(localDateTime.getYear()); // 获取年
System.out.println(localDateTime.getMonth()); // 获取月
System.out.println(localDateTime.getMinute()); // 获取分钟
// 年 月 日的设置
LocalDateTime localDateTime1 = localDateTime.withDayOfMonth(22);
System.out.println(localDateTime);
System.out.println(localDateTime1);
LocalDateTime localDateTime2 = localDateTime.withHour(4);
System.out.println(localDateTime2); // 设置 时
LocalDateTime localDateTime3 = localDateTime.plusDays(3); //加3天
System.out.println(localDateTime3);
LocalDateTime localDateTime4 = localDateTime.minusDays(2); //减2天
System.out.println(localDateTime4);
}
}
2.Instant类的使用
package com.lmw.time;
import org.junit.Test;
import java.time.*;
/**
* @author
* @version 1.0.0
* @createTime 2022/5/17 15:55
* @description
*/
public class Jdk8DateTimeTest {
@Test
public void test2() {
// 获取本初子午线对应的标准时间
Instant instant = Instant.now(); // 子午线时间
System.out.println(instant);
// 添加时间偏移量
OffsetDateTime offsetDateTime = instant.atOffset(ZoneOffset.ofHours(8)); // 加8小时 东八区时间
System.out.println(offsetDateTime);
// 获取对应的毫秒数
long l = instant.toEpochMilli();
System.out.println(l); //毫秒时间戳
//通过给定毫秒数获取Instant实例
Instant instant1 = Instant.ofEpochMilli(1652775900576L);
System.out.println(instant1);
}
}
3.DateTimeFormatter类的使用(开发中一般使用这个)
格式化或解析日期、时间
① 实例化方式:
预定义的标准格式。如:ISO_LOCAL_DATE_TIME;ISO_LOCAL_DATE;ISO_LOCAL_TIME
本地化相关的格式。如:ofLocalizedDateTime(FormatStyle.LONG)
自定义的格式。如:ofPattern(“yyyy-MM-dd hh:mm:ss”)
② 常用方法:
package com.lmw.time;
import org.junit.Test;
import java.time.*;
import java.time.format.DateTimeFormatter;
import java.time.format.FormatStyle;
import java.time.temporal.TemporalAccessor;
/**
* @author
* @version 1.0.0
* @createTime 2022/5/17 15:55
* @description
*/
public class Jdk8DateTimeTest {
@Test
public void test3() {
// 方法1: 本地预定义
// 创建对象
DateTimeFormatter isoLocalDateTime = DateTimeFormatter.ISO_LOCAL_DATE_TIME;
LocalDateTime localDateTime = LocalDateTime.now();
// 格式化 日期转换为字符串
String str1 = isoLocalDateTime.format(localDateTime);
System.out.println(localDateTime);
System.out.println(str1);
// 解析,字符串转换为日期
TemporalAccessor parse = isoLocalDateTime.parse(str1);
System.out.println(parse);
//方法2:本地化相关格式 如ofLocalizedDateTime() 参数包含LONG、MEDIUM、SHORT
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.LONG);
String str2 = dateTimeFormatter.format(localDateTime);
System.out.println(str2);
//本地化相关格式,如 ofLocalizedDate()
// FormatStyle.FULL/FormatStyle.LONG/FormatStyle.MEDIUM/FormatStyle.SHORT
DateTimeFormatter dateTimeFormatter1 = DateTimeFormatter.ofLocalizedDate(FormatStyle.FULL);
String str3 = dateTimeFormatter1.format(LocalDate.now());
System.out.println(str3);//2022年5月17日 星期二
// 方法3 自定义格式 重点
DateTimeFormatter dateTimeFormatter2 = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
//格式化
String str4 = dateTimeFormatter2.format(LocalDateTime.now());
System.out.println(str4);
// 解析
TemporalAccessor parse1 = dateTimeFormatter2.parse("2022-05-17 09:28:18");
System.out.println(parse1);
}
}
.out.println(str4);
// 解析
TemporalAccessor parse1 = dateTimeFormatter2.parse("2022-05-17 09:28:18");
System.out.println(parse1);
}
}