如何使用给定时区格式化 GWT 应用程序中的时间戳?

发布于 2024-12-01 20:13:53 字数 138 浏览 1 评论 0原文

我必须在 gwt 应用程序中使用从服务器加载的特定时区来格式化日期/时间。可能的时区是这样的 GMT、GMT+1、GMT-2 等... 到目前为止,我使用 DateTimeFormat 来格式化我的时间戳,并且它们使用客户端的区域设置。

请帮忙。

I have to format date/time in my gwt app with specific timezone, which is loaded from the server. Possible timezones are like this GMT, GMT+1, GMT-2 etc...
Up to now i used DateTimeFormat to format my timestamps, and they used client's locale.

PLease help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

折戟 2024-12-08 20:13:53

您可以使用 DateTimeFormat 以任何您想要的时区进行格式化,只需将其作为第二个参数传递给 format 方法
要获取 TimeZone 对象,根据您希望如何在格式化日期/时间中呈现时区信息(如果有),您可以使用 createTimeZone(int)createTimeZone(String) (从 TimeZoneConstants 中获取字符串)。

You can format in any timezone you want with DateTimeFormat, you just have to pass it as the second argument to the format method.
And to obtain a TimeZone object, depending on how you want to present the timezone information (if ever) in the formatted date/time, you can use either createTimeZone(int) or createTimeZone(String) (getting the string out of TimeZoneConstants).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文