這篇文章將為大家詳細(xì)講解有關(guān)java8中怎么獲取指定日期段,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
創(chuàng)新互聯(lián)一直通過網(wǎng)站建設(shè)和網(wǎng)站營(yíng)銷幫助企業(yè)獲得更多客戶資源。 以"深度挖掘,量身打造,注重實(shí)效"的一站式服務(wù),以網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、移動(dòng)互聯(lián)產(chǎn)品、全網(wǎng)營(yíng)銷推廣服務(wù)為核心業(yè)務(wù)。10余年網(wǎng)站制作的經(jīng)驗(yàn),使用新網(wǎng)站建設(shè)技術(shù),全新開發(fā)出的標(biāo)準(zhǔn)網(wǎng)站,不但價(jià)格便宜而且實(shí)用、靈活,特別適合中小公司網(wǎng)站制作。網(wǎng)站管理系統(tǒng)簡(jiǎn)單易用,維護(hù)方便,您可以完全操作網(wǎng)站資料,是中小公司快速網(wǎng)站建設(shè)的選擇。
/** * 根據(jù)時(shí)間段獲取 指定類型列表 * [@param](https://my.oschina.net/u/2303379) start * [@param](https://my.oschina.net/u/2303379) end * [@param](https://my.oschina.net/u/2303379) unit 天:0 周:1 月:2 季:3 半年:4 年:5 * [@return](https://my.oschina.net/u/556800) 天: 2019-07-11 周:2019-52 月:2019-07 季:2019-4 半年:2019-2 年:2019 */ public static ListgetPeriod(LocalDate start,LocalDate end,int unit) { if (start.compareTo(end) > 0) { throw new DateTimeException("start cannot be greater than the end"); } List list = new ArrayList<>(); switch (unit) { case 0: getDays(start,end,list); break; case 1: getWeeks(start,end,list); break; case 2: getMonths(start,end,list); break; case 3: getQuarters(start,end,list); break; case 4: getHalfYears(start,end,list); break; case 5: getYears(start,end,list); break; default: break; } return list; } // 獲取天列表 private static void getDays(LocalDate start, LocalDate end, List list) { while (start.compareTo(end) <= 0) { list.add(start.format(DateTimeFormatter.ofPattern(parsePatterns[0]))); start = start.plusDays(1); } } // 獲取周列表 private static void getWeeks(LocalDate start, LocalDate end, List list) { // 初始化 周 iso標(biāo)準(zhǔn) 起始周一 大于4天 // WeekFields weekFields = WeekFields.ISO; // 初始化 第一天即第一周 WeekFields weekFields = WeekFields.of(DayOfWeek.MONDAY,1); while (start.compareTo(end) <= 0) { list.add(start.getYear()+"-"+start.get(weekFields.weekOfWeekBasedYear())); start = start.plusWeeks(1); } } // 獲取月列表 private static void getMonths(LocalDate start, LocalDate end, List list) { while (start.getYear()*100+start.getMonthValue() <= end.getYear()*100+end.getMonthValue()) { list.add(start.format(DateTimeFormatter.ofPattern("yyyy-MM"))); start = start.plusMonths(1); } } // 獲取季列表 private static void getQuarters(LocalDate start, LocalDate end, List list) { while (start.getYear()*10+((int)Math.ceil(start.getMonthValue() / 3.0)) <= end.getYear()*10+((int)Math.ceil(end.getMonthValue() / 3.0))) { String quarter = start.getYear() +"-"+ ((int)Math.ceil(start.getMonthValue() / 3.0)); if (!list.contains(quarter)) { list.add(quarter); } start = start.plusMonths(1); } } // 獲取半年列表 private static void getHalfYears(LocalDate start, LocalDate end, List list) { while (start.getYear()*10+((int)Math.ceil(start.getMonthValue() / 6.0)) <= ((int)Math.ceil(end.getMonthValue() / 6.0))) { String quarter = start.getYear() +"-"+ ((int)Math.ceil(start.getMonthValue() / 6.0)); if (!list.contains(quarter)) { list.add(quarter); } start = start.plusMonths(1); } } // 獲取年列表 private static void getYears(LocalDate start, LocalDate end, List list) { while (start.getYear() <= end.getYear()) { list.add(start.getYear()+""); start = start.plusYears(1); } }
關(guān)于java8中怎么獲取指定日期段就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。