91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

list怎么獲取一個時間間隔內月份

發布時間:2021-12-16 10:27:06 來源:億速云 閱讀:132 作者:iii 欄目:大數據

這篇文章主要講解了“list怎么獲取一個時間間隔內月份”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“list怎么獲取一個時間間隔內月份”吧!

依賴:

<dependency>
    <groupId>joda-time</groupId>
    <artifactId>joda-time</artifactId>
    <version>2.10.5</version>
</dependency>
import org.joda.time.DateTime;

import java.util.ArrayList;
import java.util.List;

public class Client {
    public static void main(String[] args) {
        Long startTime = 1599148799000L;
        Long endTime=1599148799000L;
        DateTime start = new DateTime(startTime);
        DateTime end = new DateTime(endTime);

        int oneYear = start.getYear();
        int oneMonth = start.getMonthOfYear();

        int twoYear = end.getYear();
        int twoMonth = end.getMonthOfYear();


        List<String> yearMonth = getYearMonth(oneYear,twoYear,oneMonth,twoMonth);

        System.out.println(yearMonth);


    }

    private static List<String> getYearMonth(int oneYear,int twoYear ,int oneMonth,int twoMonth){
       return getYearMonth(oneYear,twoYear,oneMonth,twoMonth,"-");
    }
    private static List<String> getYearMonth(int oneYear,int twoYear ,int oneMonth,int twoMonth,String separator){
        List<String> yearMonth = new ArrayList<>();
        if(oneYear < twoYear){
            if(oneYear + 1 == twoYear){// 兩個年份是間隔為1的關系
                yearMonth.addAll(getYearMonth(oneYear,separator,oneMonth,12));
                yearMonth.addAll(getYearMonth(twoYear,separator,1,twoMonth));
                return yearMonth;
            }else {
                while (oneYear < twoYear){
                    yearMonth.addAll(getYearMonth(oneYear,separator,1,12));
                    oneYear +=1;
                }
                yearMonth.addAll(getYearMonth(twoYear,separator,1,twoMonth));
            }
        }else {
            yearMonth.addAll(getYearMonth(twoYear,separator,oneMonth,twoMonth));
        }
        return yearMonth;
    }

    private static List<String> getYearMonth(int year,String separator ,int fromMonth,int toMonth){
        List<String> yearMonth = new ArrayList<>();
        for (int i = fromMonth; i <= toMonth; i++) {
            if(i< 10){
                yearMonth.add(year+separator+"0"+i);
            }else {
                yearMonth.add(year+separator+i);
            }
        }
        return yearMonth;
    }
}

結果

[2020-09]

感謝各位的閱讀,以上就是“list怎么獲取一個時間間隔內月份”的內容了,經過本文的學習后,相信大家對list怎么獲取一個時間間隔內月份這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

灵石县| 桂平市| 岑巩县| 河津市| 四川省| 庆城县| 监利县| 衡阳县| 孟津县| 滦平县| 陕西省| 丹凤县| 浏阳市| 怀仁县| 团风县| 绍兴市| 炎陵县| 玛曲县| 利津县| 和政县| 庆云县| 钟山县| 临洮县| 扎鲁特旗| 濮阳市| 清苑县| 弋阳县| 中卫市| 满洲里市| 徐闻县| 洪江市| 永福县| 沙洋县| 富裕县| 林甸县| 陵川县| 维西| 宜川县| 长沙县| 聊城市| 房山区|