我有一个GWT bootstrap dateTimeBox,我想在当前时间戳中添加一天,我希望明天在客户端显示默认日期。 尝试使用日历实例,但它给出了编译错误。 Plz帮助我如何在不进行服务器调用的情况下在客户端实现此目的。
答案 0 :(得分:1)
要在GWT中添加一天到当前日期,您必须使用CalendarUtil
类:
Date now = new Date();
CalendarUtil.addDaysToDate(now, 1); // change for the number of days, use negatives to subtract
希望它有所帮助。