因此,我花了大量的时间在Google上搜索和浏览内容,但我无法使其正常工作。即使request.getEnd()在当前startCal.getTime之后几天,它也不会认为该语句为真。有任何想法吗?
while(startCal.after(request.getEnd()))
{
/* Calculate new beginning */
startCal.add(Calendar.DATE, 1);
newBegin = startCal.getTime();
System.out.println(newBegin);
/* Calculate new ending */
endCal.add(Calendar.DATE, 1);
newEnd = endCal.getTime();
/* Setting new dates and series ID */
localRequest.setBegin(newBegin);
localRequest.setEnd(newEnd);
localRequest.setSeriesID(seriesID);
/* Sending new reservation to database */
//reserve(localRequest);
System.out.println("RESERVATION DONE");
}
最佳答案
即使request.getEnd()是当前日期之后的几天
startCal.getTime。
然后就知道它不会开始!这行代码:
while(startCal.after(request.getEnd()))
说“开始时间是在请求结束后。”您描述的是相反的数据!
关于java - 使用Calendar.after的while语句无法启动,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16846179/