Java 將一段時(shí)間以周、月、季分割

本文所有使用的時(shí)間戳均為毫秒級(jí) 得到的集合區(qū)間也是毫秒級(jí)的時(shí)間戳

  • 按周分割時(shí)間

    1. 代碼如下:
      @Test
      public void timeSplitByWeek() {
          // 1.開始時(shí)間 2019-06-09 13:16:04
          Long startTime = 1560057364000L;
          // 2.結(jié)束時(shí)間 2019-07-09 13:16:04
          Long endTime = 1562649364000L;
          // 3.開始時(shí)間段區(qū)間集合
          List<Long> beginDateList = new ArrayList<Long>();
          // 4.結(jié)束時(shí)間段區(qū)間集合
          List<Long> endDateList = new ArrayList<Long>();
          // 5.調(diào)用工具類
          MyUtils.getIntervalTimeByWeek(startTime, endTime, beginDateList, endDateList);
          // 6.打印輸出
          SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
          for (int i = 0; i < beginDateList.size(); i++) {
              Long beginStr = beginDateList.get(i);
              Long endStr = endDateList.get(i);
              String begin1 = sdf.format(new Date(beginStr));
              String end1 = sdf.format(new Date(endStr));
              System.out.println("第" + i + "段時(shí)間區(qū)間:" + begin1 + "-------" + end1);
          }
      }
      
    2. 運(yùn)行結(jié)果如下圖所示:


      以周分割時(shí)間
  • 按月分割時(shí)間

    1. 代碼如下:
      @Test
      public void timeSplitByMonth() {
          // 1.開始時(shí)間 2017-02-03 13:16:04
          Long startTime = 1486098964000L;
          // 2.結(jié)束時(shí)間 2019-07-03 13:16:05
          Long endTime = 1562130965000L;
          // 3.開始時(shí)間段區(qū)間集合
          List<Long> beginDateList = new ArrayList<Long>();
          // 4.結(jié)束時(shí)間段區(qū)間集合
          List<Long> endDateList = new ArrayList<Long>();
          // 5.調(diào)用工具類
          MyUtils.getIntervalTimeByMonth(startTime, endTime, beginDateList, endDateList);
          // 6.打印輸出
          SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
          for (int i = 0; i < beginDateList.size(); i++) {
              Long beginStr = beginDateList.get(i);
              Long endStr = endDateList.get(i);
              String begin1 = sdf.format(new Date(beginStr));
              String end1 = sdf.format(new Date(endStr));
              System.out.println("第" + i + "段時(shí)間區(qū)間:" + begin1 + "-------" + end1);
          }
      }
      
    2. 運(yùn)行結(jié)果如下圖所示:


      以月分割時(shí)間
  • 按季分割時(shí)間

    1. 代碼如下:
      @Test
      public void timeSplitByQuarter() {
          // 1.開始時(shí)間 2018-12-09 13:16:04
          Long startTime = 1544332564000L;
          // 2.結(jié)束時(shí)間 2019-12-09 13:16:04
          Long endTime = 1575868564000L;
          // 3.開始時(shí)間段區(qū)間集合
          List<Long> beginDateList = new ArrayList<Long>();
          // 4.結(jié)束時(shí)間段區(qū)間集合
          List<Long> endDateList = new ArrayList<Long>();
          // 5.調(diào)用工具類
          MyUtils.getIntervalTimeByQuarter(startTime, endTime, beginDateList, endDateList);
          // 6.打印輸出
          SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
          for (int i = 0; i < beginDateList.size(); i++) {
              Long beginStr = beginDateList.get(i);
              Long endStr = endDateList.get(i);
              String begin1 = sdf.format(new Date(beginStr));
              String end1 = sdf.format(new Date(endStr));
              System.out.println("第" + i + "段時(shí)間區(qū)間:" + begin1 + "-------" + end1);
          }
      }
      
    2. 運(yùn)行結(jié)果如下圖所示:


      以季分割時(shí)間
  • 工具類MyUtils代碼如下所示:

    public class MyUtils {
        /**
        * 以季度分割時(shí)間段
        * 此處季度是以 12-2月   3-5月   6-8月  9-11月 劃分  
        * @param startTime     開始時(shí)間戳(毫秒)
        * @param endTime       結(jié)束時(shí)間戳(毫秒)
        * @param beginDateList 開始段時(shí)間戳 和 結(jié)束段時(shí)間戳 一一對(duì)應(yīng)
        * @param endDateList   結(jié)束段時(shí)間戳 和 開始段時(shí)間戳 一一對(duì)應(yīng)
        */
        public static void getIntervalTimeByQuarter(Long startTime, Long endTime, List<Long> beginDateList, List<Long> endDateList) {
            Date startDate = new Date(startTime);
            Date endDate = new Date(endTime);
            Calendar calendar = Calendar.getInstance();
            calendar.setTime(startDate);
            int month = calendar.get(Calendar.MONTH) + 1;
            switch (month) {
                case 12:
                case 3:
                case 6:
                case 9:
                    addTime(beginDateList, endDateList, startDate, endDate, calendar, 3);
                    break;
                case 1:
                case 4:
                case 7:
                case 10:
                    addTime(beginDateList, endDateList, startDate, endDate, calendar, 2);
                    break;
                case 2:
                case 5:
                case 8:
                case 11:
                    addTime(beginDateList, endDateList, startDate, endDate, calendar, 1);
                    break;
            }
        }
    
        private static void addTime(List<Long> beginDateList, List<Long> endDateList, Date startDate, Date endDate, Calendar calendar, int i) {
            beginDateList.add(startDate.getTime());
            calendar.add(Calendar.MONTH, i);
            calendar.set(Calendar.DAY_OF_MONTH, 1);
            calendar.add(Calendar.DATE, -1);
            calendar.set(Calendar.HOUR_OF_DAY, 13);
            calendar.set(Calendar.MINUTE, 59);
            calendar.set(Calendar.SECOND, 59);
            if (calendar.getTimeInMillis() > endDate.getTime()) {
                endDateList.add(endDate.getTime());
    
            } else {
                endDateList.add(calendar.getTimeInMillis());
                while (calendar.getTimeInMillis() < endDate.getTime()) {
                    calendar.add(Calendar.DATE, 1);
                    calendar.set(Calendar.HOUR_OF_DAY, 0);
                    calendar.set(Calendar.MINUTE, 0);
                    calendar.set(Calendar.SECOND, 0);
                    beginDateList.add(calendar.getTimeInMillis());
                    calendar.add(Calendar.MONTH, 3);
                    calendar.set(Calendar.DAY_OF_MONTH, 1);
                    calendar.add(Calendar.DATE, -1);
                    calendar.set(Calendar.HOUR_OF_DAY, 13);
                    calendar.set(Calendar.MINUTE, 59);
                    calendar.set(Calendar.SECOND, 59);
                    if (calendar.getTimeInMillis() < endDate.getTime()) {
                        endDateList.add(calendar.getTimeInMillis());
                    } else {
                        endDateList.add(endDate.getTime());
                    }
                }
            }
        }
    
        /**
        * 以周分割時(shí)間段
        *
        * @param startTime     開始時(shí)間戳(毫秒)
        * @param endTime       結(jié)束時(shí)間戳(毫秒)
        * @param beginDateList 開始段時(shí)間戳 和 結(jié)束段時(shí)間戳 一一對(duì)應(yīng)
        * @param endDateList   結(jié)束段時(shí)間戳 和 開始段時(shí)間戳 一一對(duì)應(yīng)
        */
        public static void getIntervalTimeByWeek(Long startTime, Long endTime, List<Long> beginDateList, List<Long> endDateList) {
            Date startDate = new Date(startTime);
            Date endDate = new Date(endTime);
            SimpleDateFormat sdw = new SimpleDateFormat("E");
            Calendar calendar = Calendar.getInstance();
            String begin = sdw.format(startDate);
            calendar.setTime(startDate);
            beginDateList.add(calendar.getTimeInMillis());
            if ("星期一".equals(begin)) {
                addTimeStamp(beginDateList, endDateList, startDate, endDate, sdw, calendar);
            } else {
                if ("星期日".equals(sdw.format(startDate))) {
                    Calendar special = Calendar.getInstance();
                    special.setTime(startDate);
                    special.set(Calendar.HOUR_OF_DAY, 23);
                    special.set(Calendar.MINUTE, 59);
                    special.set(Calendar.SECOND, 59);
                    endDateList.add(special.getTime().getTime());
                }
                addTimeStamp(beginDateList, endDateList, startDate, endDate, sdw, calendar);
            }
        }
    
        private static void addTimeStamp(List<Long> beginDateList, List<Long> endDateList, Date startDate, Date endDate, SimpleDateFormat sdw, Calendar calendar) {
            while (startDate.getTime() < endDate.getTime()) {
                calendar.add(Calendar.DAY_OF_YEAR, 1);
                startDate = calendar.getTime();
                if ("星期一".equals(sdw.format(startDate))) {
                    calendar.set(Calendar.HOUR_OF_DAY, 0);
                    calendar.set(Calendar.MINUTE, 0);
                    calendar.set(Calendar.SECOND, 0);
                    beginDateList.add(calendar.getTimeInMillis());
                } else if ("星期日".equals(sdw.format(startDate)) || startDate.getTime() >= endDate.getTime()) {
                    if (startDate.getTime() <= endDate.getTime()) {
                        calendar.set(Calendar.HOUR_OF_DAY, 23);
                        calendar.set(Calendar.MINUTE, 59);
                        calendar.set(Calendar.SECOND, 59);
                        endDateList.add(calendar.getTimeInMillis());
                    } else {
                        endDateList.add(endDate.getTime());
                    }
                }
            }
        }
    
        /**
        * 按照月份分割一段時(shí)間
        *
        * @param startTime     開始時(shí)間戳(毫秒)
        * @param endTime       結(jié)束時(shí)間戳(毫秒)
        * @param beginDateList 開始段時(shí)間戳 和 結(jié)束段時(shí)間戳 一一對(duì)應(yīng)
        * @param endDateList   結(jié)束段時(shí)間戳 和 開始段時(shí)間戳 一一對(duì)應(yīng)
        */
        public static void getIntervalTimeByMonth(Long startTime, Long endTime, List<Long> beginDateList, List<Long> endDateList) {
            Date startDate = new Date(startTime);
            Date endDate = new Date(endTime);
            Calendar calendar = Calendar.getInstance();
            calendar.setTime(startDate);
            beginDateList.add(calendar.getTimeInMillis());
            while (calendar.getTimeInMillis() < endDate.getTime()) {
                calendar.add(Calendar.MONTH, 1);
                calendar.set(Calendar.DAY_OF_MONTH, 1);
                calendar.add(Calendar.DATE, -1);
                calendar.set(Calendar.HOUR_OF_DAY, 13);
                calendar.set(Calendar.MINUTE, 59);
                calendar.set(Calendar.SECOND, 59);
                if(calendar.getTimeInMillis() < endDate.getTime()){
                    endDateList.add(calendar.getTimeInMillis());
                } else {
                    endDateList.add(endDate.getTime());
                    break;
                }
                calendar.add(Calendar.DATE, 1);
                calendar.set(Calendar.HOUR_OF_DAY, 0);
                calendar.set(Calendar.MINUTE, 0);
                calendar.set(Calendar.SECOND, 0);
                beginDateList.add(calendar.getTimeInMillis());
            }
        }
    }
    
    
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末嫉髓,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子邑闲,更是在濱河造成了極大的恐慌算行,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,949評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件苫耸,死亡現(xiàn)場(chǎng)離奇詭異州邢,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)褪子,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,772評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門量淌,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人嫌褪,你說我怎么就攤上這事呀枢。” “怎么了笼痛?”我有些...
    開封第一講書人閱讀 158,419評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵裙秋,是天一觀的道長。 經(jīng)常有香客問我缨伊,道長摘刑,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,812評(píng)論 1 285
  • 正文 為了忘掉前任刻坊,我火速辦了婚禮枷恕,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘谭胚。我一直安慰自己活尊,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,927評(píng)論 6 386
  • 文/花漫 我一把揭開白布漏益。 她就那樣靜靜地躺著蛹锰,像睡著了一般。 火紅的嫁衣襯著肌膚如雪绰疤。 梳的紋絲不亂的頭發(fā)上铜犬,一...
    開封第一講書人閱讀 50,102評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼癣猾。 笑死敛劝,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的纷宇。 我是一名探鬼主播夸盟,決...
    沈念sama閱讀 39,171評(píng)論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼像捶!你這毒婦竟也來了上陕?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,921評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤拓春,失蹤者是張志新(化名)和其女友劉穎释簿,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體硼莽,經(jīng)...
    沈念sama閱讀 44,366評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡庶溶,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,675評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了懂鸵。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片偏螺。...
    茶點(diǎn)故事閱讀 38,820評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖匆光,靈堂內(nèi)的尸體忽然破棺而出套像,到底是詐尸還是另有隱情,我是刑警寧澤殴穴,帶...
    沈念sama閱讀 34,523評(píng)論 4 335
  • 正文 年R本政府宣布凉夯,位于F島的核電站,受9級(jí)特大地震影響采幌,放射性物質(zhì)發(fā)生泄漏劲够。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,162評(píng)論 3 317
  • 文/蒙蒙 一休傍、第九天 我趴在偏房一處隱蔽的房頂上張望征绎。 院中可真熱鬧,春花似錦磨取、人聲如沸人柿。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,885評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽凫岖。三九已至,卻和暖如春逢净,著一層夾襖步出監(jiān)牢的瞬間哥放,已是汗流浹背歼指。 一陣腳步聲響...
    開封第一講書人閱讀 32,126評(píng)論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留甥雕,地道東北人踩身。 一個(gè)月前我還...
    沈念sama閱讀 46,647評(píng)論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像社露,于是被迫代替她去往敵國和親挟阻。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,732評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容