关于TemporalAdjusters.lastDayOfMonth()

时间:2019-04-02 10:16:47

标签: java localdate java.time dayofmonth

这是我的jsp页面源代码:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ page import="java.time.format.DateTimeFormatter"%>  
<%@ page import="java.time.temporal.TemporalAdjusters"%>  
<%@ page import="java.time.LocalDate"%>    
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Local Date Demo</title>
</head>
<body>
<%
int year=2018,month=12,date=1;
LocalDate theMonthShiftStartDate=LocalDate.of(year,month,date);
LocalDate theMonthShiftEndDate=theMonthShiftStartDate.with(TemporalAdjusters.lastDayOfMonth());  
LocalDate previousMonthShiftStartDate=theMonthShiftStartDate.plusMonths(-1);
LocalDate previousMonthShiftEndDate=previousMonthShiftStartDate.with(TemporalAdjusters.lastDayOfMonth());

%>
theMonthShiftStartDate=<%=theMonthShiftStartDate.format(DateTimeFormatter.ofPattern("YYYY-MM-dd"))%><br>
theMonthShiftEndDate=<%=theMonthShiftEndDate.format(DateTimeFormatter.ofPattern("YYYY-MM-dd"))%><br>
previousMonthShiftStartDate=<%=previousMonthShiftStartDate.format(DateTimeFormatter.ofPattern("YYYY-MM-dd"))%><br>
previousMonthShiftEndDate=<%=previousMonthShiftEndDate.format(DateTimeFormatter.ofPattern("YYYY-MM-dd"))%><br>

</body>
</html>

为什么输出如下:

 theMonthShiftStartDate=2018-12-01
 theMonthShiftEndDate=2019-12-31
 previousMonthShiftStartDate=2018-11-01
 previousMonthShiftEndDate=2018-11-30

我希望“ theMonthShiftEndDate”应为2018-12-31,但是它将返回2019-12-31。

根据Javadoc:

 TemporalAdjusters.lastDayOfMonth() 

返回“月的最后一天”调节器,该调节器返回设置为当前月最后一天的新日期。

我今天运行了jsp,为什么问题只出现在“ 12月”的本地日期对象中,而不是出现在11月?

1 个答案:

答案 0 :(得分:1)

请参阅week-dates上的Wikipedia。

  

示例

     

2008年12月29日星期一写为“ 2009-W01-1”
2010年1月3日星期日   写为“ 2009-W53-7”


您写了

DateTimeFormatter.ofPattern("YYYY-MM-dd"))

使用模式YYYY,您正在使用基于周的年份进行格式化。
将您的模式更改为yyyy-MM-dd,该模式使用使用年份

DateTimeFormatter.ofPattern("yyyy-MM-dd"))