我的数据库时间戳字段会自动转换为 GUI 用户的时区吗
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取用户的时区,并使用
Calendar.setTimeZone()
设置时区并根据用户时区检索Timestamp
。您可以使用TimeZone
实例化Calendar
,即或者您可以在之后设置它,例如,
Get the user's time zone, and use
Calendar.setTimeZone()
to set the time zone and retrieve theTimestamp
according to the user's time zone. You can instantiateCalendar
using thatTimeZone
, i.e.Or you can set it afterwards like,