Java 如何使用for循环填充年月列表?

Java How to use for loop to populate Year and Month list?

如何循环显示年份和月份以显示在输出下方? 显示期间的限制是当前月份和年份 此外,显示 3 年,包括截至日期的年份。意思是如果现在是 2019 年,则显示 2018 年和 2017 年。

我尝试使用一些代码将 运行 作为 java 应用程序,希望获得下面的预期输出,但这是我已经尝试并得到的结果。

如果有人能在这里阐明一些问题,我们将不胜感激。

public class TestClass {
public static void main(String[] args) {
    Calendar today = Calendar.getInstance();
    //month=5, index starts from 0
    int month = today.get(Calendar.MONTH);
    //year=2019
    int year = today.get(Calendar.YEAR);

    for(int i = 0; i < 3; i++) {    //year
        for(int j= 0; j <= month; j++) {    //month
        System.out.println("Value of year: " + (year - 2)); //start from 2017 and iterate to 2 years ahead
        System.out.println("Value of month: " + (month + 1)); //start from January (index val: 1) and iterate to today's month
        }
    }
}

}

预期输出:

2017年 1个 2017年 2个 2017年 3个 2017年 4个 2017年 5个 2017年 6个 2017年 7 2017年 8个 2017年 9 2017年 10 2017年 11 2017年 12

2018年 1个 2018 2个 2018 3个 2018 4个 2018 5个 2018 6个 2018 7 2018 8个 2018 9 2018 10 2018 11 2018 12

2019 1个 2019 2个 2019 3个 2019 4个 2019 5个 2019 6

编辑:在循环中使用年份和月份

for(int i = year-2; i <= year; i++) {    //year

    for(int j= 1; (j <= 12 || (j == month && i == year)); j++) {    //month
        System.out.println("Value of year: " + i); //start from 2017 and iterate to 2 years ahead
        System.out.println("Value of month: " + j); //start from January (index val: 1) and iterate to today's month
    }
}

tl;博士

YearMonth                        // Represent a specific month as a whole.
.now(                            // Determine the current month as seen in the wall-clock time used by the people of a particular region (a time zone).
    ZoneId.of( "Asia/Tokyo" )    // Specify your desired/expected time zone.
)                                // Returns a `YearMonth` object.
.withMonth( 1 )                  // Move back to January of this year. Returns another `YearMonth` object rather than changing (mutating) the original, per the immutable objects pattern.
.minusYears( 2 )                 // Jump back two years in the past. Returns yet another `YearMonth` object.

java.time

您使用的是可怕的旧 date-time classes,多年前已被现代 java.time classes 取代.

还有,你忽略了时区的问题。时区对于确定日期至关重要。对于任何给定时刻,日期在全球范围内因地区而异。例如,Paris France is a new day while still “yesterday” in Montréal Québec.

午夜后几分钟

Continent/Region的格式指定proper time zone name,例如America/MontrealAfrica/CasablancaPacific/Auckland。切勿使用 ESTIST 等 2-4 字母缩写,因为它们 不是 真正的时区,没有标准化,甚至不是唯一的(!)。

ZoneId z = ZoneId.of( "America/Montreal" ) ;  
LocalDate today = LocalDate.now( z ) ;

YearMonth

你只关心年月,不关心日期。所以使用 YearMonth class.

ZoneId z = ZoneId.of( "Africa/Tunis" ) ;
YearMonth yearMonthNow = YearMonth.now( z ) ;

YearMonth yearMonthJanuaryTwoYearAgo = yearMonthNow.withMonth( 1 ).minusYears( 2 ) ;

一个月递增,边走边收。

ArrayList< YearMonth > yearMonths = new ArrayList<>();
YearMonth ym = yearMonthJanuaryTwoYearAgo ;
while( ! ym.isAfter( yearMonthNow ) ) 
{
    yearMonths.add( ym ) ;
    // Set up the next loop.
    ym = ym.plusMonths( 1 ) ;
}

转储到控制台。

System.out.println( yearMonths ) ;

看到这个code run live at IdeOne.com

[2017-01, 2017-02, 2017-03, 2017-04, 2017-05, 2017-06, 2017-07, 2017-08, 2017-09, 2017-10, 2017-11, 2017-12, 2018-01, 2018-02, 2018-03, 2018-04, 2018-05, 2018-06, 2018-07, 2018-08, 2018-09, 2018-10, 2018-11, 2018-12, 2019-01, 2019-02, 2019-03, 2019-04, 2019-05, 2019-06]

如果要排除当前月份,请使用:

while( ym.isBefore( yearMonthNow ) ) 

试试下面的代码。我正在使用 java 8 和 java.time.LocalDate,

LocalDate currentDate = LocalDate.now();
int year = currentDate.getYear();
int month = currentDate.getMonthValue();

for (int i = year - 2; i <= year; i++) {
    for (int j = 1; j <= 12; j++) {
        if (i == year && j == month) {
            System.out.print(i + " " + j + " ");
            break;
        }
            System.out.print(i + " " + j + " ");
        }
    }
}

输出

2017 1 2017 2 2017 3 2017 4 2017 5 2017 6 2017 7 2017 8 2017 9 2017 10 2017 11 2017 12 2018 1 2018 2 2018 3 2018 4 2018 5 2018 6 2018 7 2018 8 2018 9 2018 10 2018 11 2018 12 2019 1 2019 2 2019 3 2019 4 2019 5 2019 6