在Java中,你可以使用java.time
包中的LocalDate
和YearMonth
類來獲取上個(gè)月的時(shí)間。以下是一個(gè)示例:
import java.time.LocalDate;
import java.time.YearMonth;
public class LastMonth {
public static void main(String[] args) {
// 獲取當(dāng)前日期
LocalDate currentDate = LocalDate.now();
// 獲取當(dāng)前年份和月份
int currentYear = currentDate.getYear();
int currentMonth = currentDate.getMonthValue();
// 創(chuàng)建一個(gè)YearMonth對(duì)象,表示當(dāng)前年份和月份
YearMonth currentYearMonth = YearMonth.of(currentYear, currentMonth);
// 獲取上個(gè)月的YearMonth對(duì)象
YearMonth lastMonthYearMonth = currentYearMonth.minusMonths(1);
// 輸出上個(gè)月的年份和月份
System.out.println("Last month: " + lastMonthYearMonth.getYear() + "-" + lastMonthYearMonth.getMonthValue());
}
}
這個(gè)示例首先獲取當(dāng)前日期,然后從中提取年份和月份。接著,它創(chuàng)建一個(gè)YearMonth
對(duì)象,表示當(dāng)前年份和月份。然后,它使用minusMonths()
方法獲取上個(gè)月的YearMonth
對(duì)象。最后,它輸出上個(gè)月的年份和月份。