第一章 Date類
1.1 Date概述
java.util.Date`類 表示特定的瞬間,精確到毫秒。
繼續查閱Date類的描述,發現Date擁有多個建構函式,只是部分已經過時,我們重點看以下兩個建構函式
public Date()
:從執行程式的此時此刻到時間原點經歷的毫秒值,轉換成Date物件,分配Date物件並初始化此物件,以表示分配它的時間(精確到毫秒)。public Date(long date)
:將指定引數的毫秒值date,轉換成Date物件,分配Date物件並初始化此物件,以表示自從標準基準時間(稱為“曆元(epoch)”,即1970年1月1日00:00:00 GMT)以來的指定毫秒數。
tips: 由於中國處於東八區(GMT+08:00)是比世界協調時間/格林尼治時間(GMT)快8小時的時區,當格林尼治標準時間為0:00時,東八區的標準時間為08:00。
簡單來說:使用無參構造,可以自動設定當前系統時間的毫秒時刻;指定long型別的構造引數,可以自定義毫秒時刻。例如:
import java.util.Date;
public class Demo01Date {
public static void main(String[] args) {
// 建立日期物件,把當前的時間
System.out.println(new Date()); // Tue Jan 16 14:37:35 CST 2020
// 建立日期物件,把當前的毫秒值轉成日期物件
System.out.println(new Date(0L)); // Thu Jan 01 08:00:00 CST 1970
}
}
tips:在使用println方法時,會自動呼叫Date類中的toString方法。Date類對Object類中的toString方法進行了覆蓋重寫,所以結果為指定格式的字串。
1.2 Date常用方法
Date類中的多數方法已經過時,常用的方法有:
public long getTime()
把日期物件轉換成對應的時間毫秒值。public void setTime(long time)
把方法引數給定的毫秒值設定給日期物件
示例程式碼
public class DateDemo02 {
public static void main(String[] args) {
//建立日期物件
Date d = new Date();
//public long getTime():獲取的是日期物件從1970年1月1日 00:00:00到現在的毫秒值
//System.out.println(d.getTime());
//System.out.println(d.getTime() * 1.0 / 1000 / 60 / 60 / 24 / 365 + "年");
//public void setTime(long time):設定時間,給的是毫秒值
//long time = 1000*60*60;
long time = System.currentTimeMillis();
d.setTime(time);
System.out.println(d);
}
}
小結:Date表示特定的時間瞬間,我們可以使用Date物件對時間進行操作。
第二章 SimpleDateFormat類
java.text.SimpleDateFormat
是日期/時間格式化類,我們透過這個類可以幫我們完成日期和文字之間的轉換,也就是可以在Date物件與String物件之間進行來回轉換。
- 格式化:按照指定的格式,把Date物件轉換為String物件。
- 解析:按照指定的格式,把String物件轉換為Date物件。
2.1 構造方法
由於DateFormat為抽象類,不能直接使用,所以需要常用的子類java.text.SimpleDateFormat
。這個類需要一個模式(格式)來指定格式化或解析的標準。構造方法為:
public SimpleDateFormat(String pattern)
:用給定的模式和預設語言環境的日期格式符號構造SimpleDateFormat。引數pattern是一個字串,代表日期時間的自定義格式。
2.2 格式規則
常用的格式規則為:
標識字母(區分大小寫) | 含義 |
---|---|
y | 年 |
M | 月 |
d | 日 |
H | 時 |
m | 分 |
s | 秒 |
備註:更詳細的格式規則,可以參考SimpleDateFormat類的API檔案。
2.3 常用方法
DateFormat類的常用方法有:
public String format(Date date)
:將Date物件格式化為字串。public Date parse(String source)
:將字串解析為Date物件。package com.itheima.a01jdk7datedemo; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class A03_SimpleDateFormatDemo1 { public static void main(String[] args) throws ParseException { /* public simpleDateFormat() 預設格式 public simpleDateFormat(String pattern) 指定格式 public final string format(Date date) 格式化(日期物件 ->字串) public Date parse(string source) 解析(字串 ->日期物件) */ //1.定義一個字串表示時間 String str = "2023-11-11 11:11:11"; //2.利用空參構造建立simpleDateFormat物件 // 細節: //建立物件的格式要跟字串的格式完全一致 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date = sdf.parse(str); //3.列印結果 System.out.println(date.getTime());//1699672271000 } private static void method1() { //1.利用空參構造建立simpleDateFormat物件,預設格式 SimpleDateFormat sdf1 = new SimpleDateFormat(); Date d1 = new Date(0L); String str1 = sdf1.format(d1); System.out.println(str1);//1970/1/1 上午8:00 //2.利用帶參構造建立simpleDateFormat物件,指定格式 SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy年MM月dd日HH:mm:ss"); String str2 = sdf2.format(d1); System.out.println(str2);//1970年01月01日 08:00:00 //課堂練習:yyyy年MM月dd日 時:分:秒 星期 } }
小結:DateFormat可以將Date物件和字串相互轉換。
2.4 練習1(初戀女友的出生日期)
/*
假設,你初戀的出生年月日為:2000-11-11
請用字串表示這個資料,並將其轉換為:2000年11月11日
建立一個Date物件表示2000年11月11日
建立一個SimpleDateFormat物件,並定義格式為年月日把時間變成:2000年11月11日
*/
//1.可以透過2000-11-11進行解析,解析成一個Date物件
String str = "2000-11-11";
//2.解析
SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd");
Date date = sdf1.parse(str);
//3.格式化
SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy年MM月dd日");
String result = sdf2.format(date);
System.out.println(result);
2.5 練習2(秒殺活動)
/* 需求:
秒殺活動開始時間:2023年11月11日 0:0:0(毫秒值)
秒殺活動結束時間:2023年11月11日 0:10:0(毫秒值)
小賈下單並付款的時間為:2023年11月11日 0:01:0
小皮下單並付款的時間為:2023年11月11日 0:11:0
用程式碼說明這兩位同學有沒有參加上秒殺活動?
*/
//1.定義字串表示三個時間
String startstr = "2023年11月11日 0:0:0";
String endstr = "2023年11月11日 0:10:0";
String orderstr = "2023年11月11日 0:01:00";
//2.解析上面的三個時間,得到Date物件
SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日HH:mm:ss");
Date startDate = sdf.parse(startstr);
Date endDate = sdf.parse(endstr);
Date orderDate = sdf.parse(orderstr);
//3.得到三個時間的毫秒值
long startTime = startDate.getTime();
long endTime = endDate.getTime();
long orderTime = orderDate.getTime();
//4.判斷
if (orderTime >= startTime && orderTime <= endTime) {
System.out.println("參加秒殺活動成功");
} else {
System.out.println("參加秒殺活動失敗");
}
第三章 Calendar類
3.1 概述
- java.util.Calendar類表示一個“日曆類”,可以進行日期運算。它是一個抽象類,不能建立物件,我們可以使用它的子類:java.util.GregorianCalendar類。
有兩種方式可以獲取GregorianCalendar物件:
- 直接建立GregorianCalendar物件;
- 透過Calendar的靜態方法getInstance()方法獲取GregorianCalendar物件【本次課使用】
3.2 常用方法
方法名 | 說明 |
---|---|
public static Calendar getInstance() | 獲取一個它的子類GregorianCalendar物件。 |
public int get(int field) | 獲取某個欄位的值。field引數列示獲取哪個欄位的值, 可以使用Calender中定義的常量來表示: Calendar.YEAR : 年 Calendar.MONTH :月 Calendar.DAY_OF_MONTH:月中的日期 Calendar.HOUR:小時 Calendar.MINUTE:分鐘 Calendar.SECOND:秒 Calendar.DAY_OF_WEEK:星期 |
public void set(int field,int value) | 設定某個欄位的值 |
public void add(int field,int amount) | 為某個欄位增加/減少指定的值 |
3.3 get方法示例
public class Demo {
public static void main(String[] args) {
//1.獲取一個GregorianCalendar物件
Calendar instance = Calendar.getInstance();//獲取子類物件
//2.列印子類物件
System.out.println(instance);
//3.獲取屬性
int year = instance.get(Calendar.YEAR);
int month = instance.get(Calendar.MONTH) + 1;//Calendar的月份值是0-11
int day = instance.get(Calendar.DAY_OF_MONTH);
int hour = instance.get(Calendar.HOUR);
int minute = instance.get(Calendar.MINUTE);
int second = instance.get(Calendar.SECOND);
int week = instance.get(Calendar.DAY_OF_WEEK);//返回值範圍:1--7,分別表示:"星期日","星期一","星期二",...,"星期六"
System.out.println(year + "年" + month + "月" + day + "日" +
hour + ":" + minute + ":" + second);
System.out.println(getWeek(week));
}
//查表法,查詢星期幾
public static String getWeek(int w) {//w = 1 --- 7
//做一個表(陣列)
String[] weekArray = {"星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"};
// 索引 [0] [1] [2] [3] [4] [5] [6]
//查表
return weekArray[w - 1];
}
}
3.4 set方法示例:
public class Demo {
public static void main(String[] args) {
//設定屬性——set(int field,int value):
Calendar c1 = Calendar.getInstance();//獲取當前日期
//計算班長出生那天是星期幾(假如班長出生日期為:1998年3月18日)
c1.set(Calendar.YEAR, 1998);
c1.set(Calendar.MONTH, 3 - 1);//轉換為Calendar內部的月份值
c1.set(Calendar.DAY_OF_MONTH, 18);
int w = c1.get(Calendar.DAY_OF_WEEK);
System.out.println("班長出生那天是:" + getWeek(w));
}
//查表法,查詢星期幾
public static String getWeek(int w) {//w = 1 --- 7
//做一個表(陣列)
String[] weekArray = {"星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"};
// 索引 [0] [1] [2] [3] [4] [5] [6]
//查表
return weekArray[w - 1];
}
}
3.5 add方法示例:
public class Demo {
public static void main(String[] args) {
//計算200天以後是哪年哪月哪日,星期幾?
Calendar c2 = Calendar.getInstance();//獲取當前日期
c2.add(Calendar.DAY_OF_MONTH, 200);//日期加200
int y = c2.get(Calendar.YEAR);
int m = c2.get(Calendar.MONTH) + 1;//轉換為實際的月份
int d = c2.get(Calendar.DAY_OF_MONTH);
int wk = c2.get(Calendar.DAY_OF_WEEK);
System.out.println("200天后是:" + y + "年" + m + "月" + d + "日" + getWeek(wk));
}
//查表法,查詢星期幾
public static String getWeek(int w) {//w = 1 --- 7
//做一個表(陣列)
String[] weekArray = {"星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"};
// 索引 [0] [1] [2] [3] [4] [5] [6]
//查表
return weekArray[w - 1];
}
}
第四章 JDK8時間相關類
JDK8時間類類名 | 作用 |
---|---|
ZoneId | 時區 |
Instant | 時間戳 |
ZoneDateTime | 帶時區的時間 |
DateTimeFormatter | 用於時間的格式化和解析 |
LocalDate | 年、月、日 |
LocalTime | 時、分、秒 |
LocalDateTime | 年、月、日、時、分、秒 |
Duration | 時間間隔(秒,納,秒) |
Period | 時間間隔(年,月,日) |
ChronoUnit | 時間間隔(所有單位) |
4.1 ZoneId 時區
/*
static Set<string> getAvailableZoneIds() 獲取Java中支援的所有時區
static ZoneId systemDefault() 獲取系統預設時區
static Zoneld of(string zoneld) 獲取一個指定時區
*/
//1.獲取所有的時區名稱
Set<String> zoneIds = ZoneId.getAvailableZoneIds();
System.out.println(zoneIds.size());//600
System.out.println(zoneIds);// Asia/Shanghai
//2.獲取當前系統的預設時區
ZoneId zoneId = ZoneId.systemDefault();
System.out.println(zoneId);//Asia/Shanghai
//3.獲取指定的時區
ZoneId zoneId1 = ZoneId.of("Asia/Pontianak");
System.out.println(zoneId1);//Asia/Pontianak
4.2 Instant 時間戳
/*
static Instant now() 獲取當前時間的Instant物件(標準時間)
static Instant ofXxxx(long epochMilli) 根據(秒/毫秒/納秒)獲取Instant物件
ZonedDateTime atZone(ZoneIdzone) 指定時區
boolean isxxx(Instant otherInstant) 判斷系列的方法
Instant minusXxx(long millisToSubtract) 減少時間系列的方法
Instant plusXxx(long millisToSubtract) 增加時間系列的方法
*/
//1.獲取當前時間的Instant物件(標準時間)
Instant now = Instant.now();
System.out.println(now);
//2.根據(秒/毫秒/納秒)獲取Instant物件
Instant instant1 = Instant.ofEpochMilli(0L);
System.out.println(instant1);//1970-01-01T00:00:00z
Instant instant2 = Instant.ofEpochSecond(1L);
System.out.println(instant2);//1970-01-01T00:00:01Z
Instant instant3 = Instant.ofEpochSecond(1L, 1000000000L);
System.out.println(instant3);//1970-01-01T00:00:027
//3. 指定時區
ZonedDateTime time = Instant.now().atZone(ZoneId.of("Asia/Shanghai"));
System.out.println(time);
//4.isXxx 判斷
Instant instant4=Instant.ofEpochMilli(0L);
Instant instant5 =Instant.ofEpochMilli(1000L);
//5.用於時間的判斷
//isBefore:判斷呼叫者代表的時間是否在引數列示時間的前面
boolean result1=instant4.isBefore(instant5);
System.out.println(result1);//true
//isAfter:判斷呼叫者代表的時間是否在引數列示時間的後面
boolean result2 = instant4.isAfter(instant5);
System.out.println(result2);//false
//6.Instant minusXxx(long millisToSubtract) 減少時間系列的方法
Instant instant6 =Instant.ofEpochMilli(3000L);
System.out.println(instant6);//1970-01-01T00:00:03Z
Instant instant7 =instant6.minusSeconds(1);
System.out.println(instant7);//1970-01-01T00:00:02Z
4.3 ZoneDateTime 帶時區的時間
/*
static ZonedDateTime now() 獲取當前時間的ZonedDateTime物件
static ZonedDateTime ofXxxx(。。。) 獲取指定時間的ZonedDateTime物件
ZonedDateTime withXxx(時間) 修改時間系列的方法
ZonedDateTime minusXxx(時間) 減少時間系列的方法
ZonedDateTime plusXxx(時間) 增加時間系列的方法
*/
//1.獲取當前時間物件(帶時區)
ZonedDateTime now = ZonedDateTime.now();
System.out.println(now);
//2.獲取指定的時間物件(帶時區)1/年月日時分秒納秒方式指定
ZonedDateTime time1 = ZonedDateTime.of(2023, 10, 1,
11, 12, 12, 0, ZoneId.of("Asia/Shanghai"));
System.out.println(time1);
//透過Instant + 時區的方式指定獲取時間物件
Instant instant = Instant.ofEpochMilli(0L);
ZoneId zoneId = ZoneId.of("Asia/Shanghai");
ZonedDateTime time2 = ZonedDateTime.ofInstant(instant, zoneId);
System.out.println(time2);
//3.withXxx 修改時間系列的方法
ZonedDateTime time3 = time2.withYear(2000);
System.out.println(time3);
//4. 減少時間
ZonedDateTime time4 = time3.minusYears(1);
System.out.println(time4);
//5.增加時間
ZonedDateTime time5 = time4.plusYears(1);
System.out.println(time5);
4.4DateTimeFormatter 用於時間的格式化和解析
/*
static DateTimeFormatter ofPattern(格式) 獲取格式物件
String format(時間物件) 按照指定方式格式化
*/
//獲取時間物件
ZonedDateTime time = Instant.now().atZone(ZoneId.of("Asia/Shanghai"));
// 解析/格式化器
DateTimeFormatter dtf1=DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm;ss EE a");
// 格式化
System.out.println(dtf1.format(time));
4.5LocalDate 年、月、日
//1.獲取當前時間的日曆物件(包含 年月日)
LocalDate nowDate = LocalDate.now();
//System.out.println("今天的日期:" + nowDate);
//2.獲取指定的時間的日曆物件
LocalDate ldDate = LocalDate.of(2023, 1, 1);
System.out.println("指定日期:" + ldDate);
System.out.println("=============================");
//3.get系列方法獲取日曆中的每一個屬性值//獲取年
int year = ldDate.getYear();
System.out.println("year: " + year);
//獲取月//方式一:
Month m = ldDate.getMonth();
System.out.println(m);
System.out.println(m.getValue());
//方式二:
int month = ldDate.getMonthValue();
System.out.println("month: " + month);
//獲取日
int day = ldDate.getDayOfMonth();
System.out.println("day:" + day);
//獲取一年的第幾天
int dayofYear = ldDate.getDayOfYear();
System.out.println("dayOfYear:" + dayofYear);
//獲取星期
DayOfWeek dayOfWeek = ldDate.getDayOfWeek();
System.out.println(dayOfWeek);
System.out.println(dayOfWeek.getValue());
//is開頭的方法表示判斷
System.out.println(ldDate.isBefore(ldDate));
System.out.println(ldDate.isAfter(ldDate));
//with開頭的方法表示修改,只能修改年月日
LocalDate withLocalDate = ldDate.withYear(2000);
System.out.println(withLocalDate);
//minus開頭的方法表示減少,只能減少年月日
LocalDate minusLocalDate = ldDate.minusYears(1);
System.out.println(minusLocalDate);
//plus開頭的方法表示增加,只能增加年月日
LocalDate plusLocalDate = ldDate.plusDays(1);
System.out.println(plusLocalDate);
//-------------
// 判斷今天是否是你的生日
LocalDate birDate = LocalDate.of(2000, 1, 1);
LocalDate nowDate1 = LocalDate.now();
MonthDay birMd = MonthDay.of(birDate.getMonthValue(), birDate.getDayOfMonth());
MonthDay nowMd = MonthDay.from(nowDate1);
System.out.println("今天是你的生日嗎? " + birMd.equals(nowMd));//今天是你的生日嗎?
4.6 LocalTime 時、分、秒
// 獲取本地時間的日曆物件。(包含 時分秒)
LocalTime nowTime = LocalTime.now();
System.out.println("今天的時間:" + nowTime);
int hour = nowTime.getHour();//時
System.out.println("hour: " + hour);
int minute = nowTime.getMinute();//分
System.out.println("minute: " + minute);
int second = nowTime.getSecond();//秒
System.out.println("second:" + second);
int nano = nowTime.getNano();//納秒
System.out.println("nano:" + nano);
System.out.println("------------------------------------");
System.out.println(LocalTime.of(8, 20));//時分
System.out.println(LocalTime.of(8, 20, 30));//時分秒
System.out.println(LocalTime.of(8, 20, 30, 150));//時分秒納秒
LocalTime mTime = LocalTime.of(8, 20, 30, 150);
//is系列的方法
System.out.println(nowTime.isBefore(mTime));
System.out.println(nowTime.isAfter(mTime));
//with系列的方法,只能修改時、分、秒
System.out.println(nowTime.withHour(10));
//plus系列的方法,只能修改時、分、秒
System.out.println(nowTime.plusHours(10));
4.7 LocalDateTime 年、月、日、時、分、秒
// 當前時間的的日曆物件(包含年月日時分秒)
LocalDateTime nowDateTime = LocalDateTime.now();
System.out.println("今天是:" + nowDateTime);//今天是:
System.out.println(nowDateTime.getYear());//年
System.out.println(nowDateTime.getMonthValue());//月
System.out.println(nowDateTime.getDayOfMonth());//日
System.out.println(nowDateTime.getHour());//時
System.out.println(nowDateTime.getMinute());//分
System.out.println(nowDateTime.getSecond());//秒
System.out.println(nowDateTime.getNano());//納秒
// 日:當年的第幾天
System.out.println("dayofYear:" + nowDateTime.getDayOfYear());
//星期
System.out.println(nowDateTime.getDayOfWeek());
System.out.println(nowDateTime.getDayOfWeek().getValue());
//月份
System.out.println(nowDateTime.getMonth());
System.out.println(nowDateTime.getMonth().getValue());
LocalDate ld = nowDateTime.toLocalDate();
System.out.println(ld);
LocalTime lt = nowDateTime.toLocalTime();
System.out.println(lt.getHour());
System.out.println(lt.getMinute());
System.out.println(lt.getSecond());
4.8 Duration 時間間隔(秒,納,秒)
// 本地日期時間物件。
LocalDateTime today = LocalDateTime.now();
System.out.println(today);
// 出生的日期時間物件
LocalDateTime birthDate = LocalDateTime.of(2000, 1, 1, 0, 0, 0);
System.out.println(birthDate);
Duration duration = Duration.between(birthDate, today);//第二個引數減第一個引數
System.out.println("相差的時間間隔物件:" + duration);
System.out.println("============================================");
System.out.println(duration.toDays());//兩個時間差的天數
System.out.println(duration.toHours());//兩個時間差的小時數
System.out.println(duration.toMinutes());//兩個時間差的分鐘數
System.out.println(duration.toMillis());//兩個時間差的毫秒數
System.out.println(duration.toNanos());//兩個時間差的納秒數
4.9 Period 時間間隔(年,月,日)
// 當前本地 年月日
LocalDate today = LocalDate.now();
System.out.println(today);
// 生日的 年月日
LocalDate birthDate = LocalDate.of(2000, 1, 1);
System.out.println(birthDate);
Period period = Period.between(birthDate, today);//第二個引數減第一個引數
System.out.println("相差的時間間隔物件:" + period);
System.out.println(period.getYears());
System.out.println(period.getMonths());
System.out.println(period.getDays());
System.out.println(period.toTotalMonths());
4.10 ChronoUnit 時間間隔(所有單位)
// 當前時間
LocalDateTime today = LocalDateTime.now();
System.out.println(today);
// 生日時間
LocalDateTime birthDate = LocalDateTime.of(2000, 1, 1,0, 0, 0);
System.out.println(birthDate);
System.out.println("相差的年數:" + ChronoUnit.YEARS.between(birthDate, today));
System.out.println("相差的月數:" + ChronoUnit.MONTHS.between(birthDate, today));
System.out.println("相差的週數:" + ChronoUnit.WEEKS.between(birthDate, today));
System.out.println("相差的天數:" + ChronoUnit.DAYS.between(birthDate, today));
System.out.println("相差的時數:" + ChronoUnit.HOURS.between(birthDate, today));
System.out.println("相差的分數:" + ChronoUnit.MINUTES.between(birthDate, today));
System.out.println("相差的秒數:" + ChronoUnit.SECONDS.between(birthDate, today));
System.out.println("相差的毫秒數:" + ChronoUnit.MILLIS.between(birthDate, today));
System.out.println("相差的微秒數:" + ChronoUnit.MICROS.between(birthDate, today));
System.out.println("相差的納秒數:" + ChronoUnit.NANOS.between(birthDate, today));
System.out.println("相差的半天數:" + ChronoUnit.HALF_DAYS.between(birthDate, today));
System.out.println("相差的十年數:" + ChronoUnit.DECADES.between(birthDate, today));
System.out.println("相差的世紀(百年)數:" + ChronoUnit.CENTURIES.between(birthDate, today));
System.out.println("相差的千年數:" + ChronoUnit.MILLENNIA.between(birthDate, today));
System.out.println("相差的紀元數:" + ChronoUnit.ERAS.between(birthDate, today));
本文參與了SegmentFault 思否面試闖關挑戰賽,歡迎正在閱讀的你也加入。