爪哇。在网络应用程序中根据用户时区创建日期
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有标准方法可以做到这一点。在客户端,您可以使用 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.
当您有任何数据时,请使用 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)
.