我的数据库时间戳字段会自动转换为 GUI 用户的时区吗

发布于 2024-11-14 18:23:30 字数 259 浏览 1 评论 0原文

我的 java 模型 bean 中有一堆时间戳字段,它们被发送到视图。如果另一个国家或时区的用户尝试查看这些字段,它们是否会显示在该用户的时区中。如果没有,您能否提供一个代码片段来执行到用户时区的转换。

[更新] 下面的 Adeels 回复将起作用,下面的链接展示了如何从数据库本身获取 bean 时设置它。

I have a bunch of timestamp fields in my java model bean which is sent the view. If a user in another country or timezone tries to view these fields, will they be shown in the user's timezone. If not, could you provide a code snippet to do this conversion to the users timezone.

[Update] Adeels reply below will work, and this following link shows how to set it when getting the bean from database itself.

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

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

发布评论

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

评论(1

﹂绝世的画 2024-11-21 18:23:30

获取用户的时区,并使用 Calendar.setTimeZone() 设置时区并根据用户时区检索Timestamp。您可以使用 TimeZone 实例化 Calendar,即

Calendar cal = GregorianCalendar.getInstance(userTimeZone);

或者您可以在之后设置它,例如,

Calendar cal = Calendar.getInstance();
cal.setTimeZone(userTimeZone);

Get the user's time zone, and use Calendar.setTimeZone() to set the time zone and retrieve the Timestamp according to the user's time zone. You can instantiate Calendar using that TimeZone, i.e.

Calendar cal = GregorianCalendar.getInstance(userTimeZone);

Or you can set it afterwards like,

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