0

我需要从用户那里获取日期和时间并将其添加到当前日期和时间。

例如,如果当前日期是 2 月 1 日,时间是下午 12:00,并且用户输入指定 31 天零 2 小时 - 输出应该是 3 月 3 日下午 2:00。

4

2 回答 2

0

这是我的 DateTimeUtil,你可以使用它。

public class DateTimeUtil {
    public static String getYear(Date date) {
        return DateTimeFormat.getFormat("yyyy").format(date);
    }
    public static String getMonth(Date date) {
        return DateTimeFormat.getFormat("MM").format(date);
    }
    public static String getDay(Date date) {
        return DateTimeFormat.getFormat("dd").format(date);
    }
    public static String getHour(Date date) {
        return DateTimeFormat.getFormat("HH").format(date);
    }
    public static String getMinute(Date date) {
        return DateTimeFormat.getFormat("mm").format(date);
    }
    public static String getSecond(Date date) {
        return DateTimeFormat.getFormat("ss").format(date);
    }

    // The String year must to have yyyy format

    public static Date getDate(String years, String months, String days, String hours, String minutes, String seconds) {
        DateTimeFormat dtf = DateTimeFormat.getFormat("yyyy-MM-dd HH:mm:ss");
        Date date = dtf.parse(years + "-" + months + "-" + days + " " + hours + ":" + minutes + ":" + seconds);
        GWT.log("date parsed " + date);
        return date;
    }
}
于 2014-12-08T22:34:50.850 回答
0

日历不是 GWT JRE 仿真的一部分。您可以参考对您的问题有答案的旧帖子。这是链接

于 2012-04-12T09:06:34.870 回答