嘗試將1天添加到簡單日期格式。發生在線路使用Groovy將日期遞增到第二天
import java.text.SimpleDateFormat
Date date = new Date();
def dateformat = new SimpleDateFormat("YYYY-MM-dd")
def currentDate = dateformat.format(date)
log.info "Current Date : " + currentDate
Date date1 = (Date)dateformat.parse(currentDate);
Calendar c1 = Calendar.getInstance();
c1.setTime(date1);
log info c1.add(Calendar.Date,1);
錯誤:
「日誌c1.add信息(Calendar.Date,1);」 groovy.lang.MissingPropertyException:沒有這樣的屬性:類信息:Script16行錯誤:10
注:當前的日期應該是在未來的任何日期,我想1天遞增。
請查看解決看看是否有幫助。 – Rao
[在Groovy中以小時/分鐘遞增日期對象]的可能重複(https://stackoverflow.com/questions/21166927/incrementing-date-object-by-hours-minutes-in-groovy) – tkruse