爪哇。在网络应用程序中根据用户时区创建日期

发布于 2024-12-06 12:28:28 字数 88 浏览 1 评论 0原文

我有一个 Java Web 应用程序。有些地方会显示日期。我想根据用户时区显示日期。如果我知道用户的时区,如何创建演出日期? 我使用日期类。 任何帮助将不胜感激。

I have a Java web-application. In some places there is showing of dates. I want to display the date according to user timezone. How do I create a date for the show if I know the timezone the user?
I use the class Date.
Any help would be greatly appreciated.

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

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

发布评论

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

评论(2

箹锭⒈辈孓 2024-12-13 12:28:28

没有标准方法可以做到这一点。在客户端,您可以使用 Java 脚本捕获时间并将该信息发送到服务器。在服务器端,您可以将时间转换为协调世界时。

There is no standard way to do this. On client side, you may capture time using Java script and send that information to the server. On server side, you can covert the time to Coordinated Universal Time.

随心而道 2024-12-13 12:28:28

当您有任何数据时,请使用 GregorianCalendar 而不是 Date除了基本显示之外的要求。您可以使用 new GregorianCalendar(TimeZone) 按时区创建当前时间。

Use GregorianCalendar rather than Date when you have any requirements besides basic display. You can create one for the current time by time-zone using new GregorianCalendar(TimeZone).

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