您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“Java怎么利用LocalDate類實現(xiàn)日歷設(shè)計”,內(nèi)容詳細,步驟清晰,細節(jié)處理妥當,希望這篇“Java怎么利用LocalDate類實現(xiàn)日歷設(shè)計”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
在我們完成這個日歷設(shè)計前,需要了解Java中的預定義類LocalDate
的一些用法
LocalDate.now() // 2022-07-01
會構(gòu)造一個新對象,表示構(gòu)造這個對象時的日期。
LocalDate.of(1999, 1, 1)
可以提供年、月和日來構(gòu)造對應(yīng)一個特定日期的對象:
當然,通常我們都希望將構(gòu)造的對象保存在一個對象變量中:
LocalDate newYearsEve = LocalDate.of(1999, 1, 1);
當有了一個LocalDate
對象,可以用方法getYear
、getMonthValue
和getDayOfMonth
得到年、月和日:
int year = newYearsEve.getYear(); // 1999 int month = newYearsEve.getMonthValue(); // 1 int day = newYeaersEve.getDayOfMonth(); // 1
上面的方法看起來沒什么意義,因為這正是構(gòu)造對象時使用的那些值。不過,有時可能有一個計算得到的日期,然后你希望調(diào)用這些方法來了解它的更多信息。例如,plusDays
方法會得到一個新的LocalDate
,如果把應(yīng)用這個方法的對象稱為當前對象,這個新日期對象則是距當前對象指定天數(shù)的一個新日期:
LocalDate aThousandDaysLater = newYearsEve.plusDays(1000); year = aThousandDaysLater.getYear(); // 2002 month = aThousandDaysLater.getMonthValue(); // 09 day = aThousandDaysLater.getDayOfMonth(); // 26
aThousandDaysLater
是在原來的日期上加了1000天,這時使用上面的方法就有效了
需求:使用LocalDate類展示當前月的日歷,格式如下:
Mon Tue Wed Thu Fri Sat Sun
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 31
當前日期使用*
號標記??梢钥吹?,這個程序需要知道如何計算某月份的天數(shù)以及一個給定日期相應(yīng)是星期幾。
①先構(gòu)造一個對象,并用當前的日期初始化
`LocalDate date = LocalDate.now();`
②獲取當前的月份和日期
int month = date.getMonthValue(); int today = date.getDayOfMonth();
③將date設(shè)置為這個月的第一天,并得到這一天為星期幾
date = date.minusDays(today - 1); // 設(shè)置為當月的第一天 DayOfWeek weekday = date.getDayOfWeek(); int value = weekday.getValue(); // 1 = Monday 7 = Sunday
變量weekday
設(shè)置為DayOfWeek
類型的對象。我們調(diào)用這個對象的getValue
方法來得到星期幾的一個數(shù)值。我們會得到一個整數(shù)。星期一就返回1,星期二就返回2,依次類推,星期日就返回7.
④由于日歷的第一行是縮進的,這樣可使月份的第一天指向相應(yīng)的星期幾。下面代碼會打印表頭和第一行的縮進
System.out.println("Mon Tue Wed Thu Fri Sat Sun"); for (int i = 1; i < value; i++) System.out.print(" ");
⑤打印日歷的主體,進入一個循環(huán),其中date遍歷一個月中的每一天。
每次迭代時,打印日期值。如果date是當前日期,這個日期則用一個*
標記。接下來,把date推進到下一天。如果到達新的一周的第一天,則換行打印:
while (date.getMonthValue() == month) { System.out.printf("%3d", date.getDayOfMonth()); if (date.getDayOfMonth() == today) System.out.print("*"); else System.out.print(" "); date = date.plusDays(1); if (date.getDayOfWeek().getValue() == 1) System.out.println(); }
⑥什么時候結(jié)束呢?我們不知道這個月有幾天,是28、29、30還是31。實際上,只要date還在當月就要繼續(xù)迭代
import java.time.DayOfWeek; import java.time.LocalDate; /** * @author JKC * @Description: * @date 2022/7/1 10:53 */ public class 制作日歷 { public static void main(String[] args) { // 創(chuàng)建一個日期對象,并進行初始化 LocalDate date = LocalDate.now(); System.out.println(date); // 獲取當前月份和日期 int month = date.getMonthValue(); int today = date.getDayOfMonth(); // 將date設(shè)置為這個月的第一天,并得到這一天為星期幾 date = date.minusDays(today - 1); // 設(shè)置為DayOfWeek類型的對象。調(diào)用這個對象的getValue方法來得到星期幾的一個數(shù)值 DayOfWeek weekday = date.getDayOfWeek(); int value = weekday.getValue(); // 1 = Monday 7 = Sunday System.out.println("Mon Tue Wed Thu Fri Sat Sun"); for (int i = 1; i < value; i++) System.out.print(" "); while (date.getMonthValue() == month) { System.out.printf("%3d", date.getDayOfMonth()); if (date.getDayOfMonth() == today) System.out.print("*"); else System.out.print(" "); date = date.plusDays(1); if (date.getDayOfWeek().getValue() == 1) System.out.println(); } if (date.getDayOfWeek().getValue() != 1) System.out.println(); } }
上面的示例程序的重點是展示如何使用一個類的接口完成相當復雜的任務(wù),而無須了解實現(xiàn)細節(jié)
static LocalDate now() //構(gòu)造一個表示當前日期的對象 static LocalDate of(int year, int month, int day) //構(gòu)造一個表示給定日期的對象 int getYear() int getMonthValue() int getDayOfMonth() //得到當前日期的年、月和日。 DayOfWeek getDayOfWeek //得到當前日期是星期幾,作為DayOfWeek類的一個實例返回。調(diào)用getValue來得到1~7之間的一個數(shù),表示這是星期幾,1表示星期一,7表示星期日 LocalDate plusDays(int n) LocalDate minusDays(int n) //生成當前日期之后或之前n天的日期
讀到這里,這篇“Java怎么利用LocalDate類實現(xiàn)日歷設(shè)計”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。