在客户端使用gwt bootstrap添加一天到时间戳

时间:2013-08-23 03:19:45

标签: gwt datetime gwt-bootstrap

我有一个GWT bootstrap dateTimeBox,我想在当前时间戳中添加一天,我希望明天在客户端显示默认日期。 尝试使用日历实例,但它给出了编译错误。 Plz帮助我如何在不进行服务器调用的情况下在客户端实现此目的。

1 个答案:

答案 0 :(得分:1)

要在GWT中添加一天到当前日期,您必须使用CalendarUtil类:

Date now = new Date();
CalendarUtil.addDaysToDate(now, 1); // change for the number of days, use negatives to subtract

希望它有所帮助。