Get a list of months within a time interval

rely:

<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;
    }
}

result

[2020-09]

{{o.name}}
{{m.name}}

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324077179&siteId=291194637