0

我正在使用 GWT。

我需要检索当前日期和上周日期。并使用 RPC 将其传递给 GWT 服务器。

如何检索系统日期和上周日期.??

4

2 回答 2

2

您将在/使用 GWT 中获取日期/时间。

  • 获取自纪元以来的 unix 时间戳
  • 获取年、月、今天、日期、小时、分钟、秒

//获取浏览器日期(!!!注意:我无法在 Eclipse 调试器中获取 GMT 时区)

Date date = new Date();

int Month = date.getMonth();

int Day = date.getDate();

int Year = date.getYear();

int Hour = date.getHours();

int min = date.getMinutes();

int sec = date.getSeconds();

int tz = date.getTimezoneOffset();

int UnixTimeStamp = (int) (date.getTime() * .001);//get unix time stamp example (seconds)

Long lTimeStamp = date.getTime(); //time in milleseconds since the epoch

int iTimeStamp = (int) (lTimeStamp * .001); //(Cast) to Int from Long, Seconds since epoch

String sTimeStamp = Integer.toString(iTimeStamp); //seconds to string

//get the gmt date - will show tz offset in string in browser, not eclipse debug window

String TheDate = date.toString();

//render date to root panel in gwt

Label label = new Label(TheDate);

RootPanel.get().add(label);

****** 其他明智的访问以下链接以获取更多信息

1)一个 GWTInfo

2)还有一个堆栈

我希望它会有所帮助。

于 2012-08-01T12:59:38.177 回答
0

我使用标准日期工具计算

你可以找到如下日期

Date fromday = new Date(System.currentTimeMillis() - 6000L * 60L * 60L * 24L);
Date today = new Date(System.currentTimeMillis());

Today 将获取当前日期,fromDay 将获取过去 6 天

于 2015-04-30T09:05:24.917 回答