客户端(Flex)和服务器端(JAVA)中的日期问题
我在弹性应用程序中遇到了日期问题。
当以字符串形式提交 Flex 应用程序中的日期(28/09/2010 10:00:00 AM)时,该日期将在服务器端转换为 Date 对象并显示结果。
但我将服务器安装在其他位置(例如:- 美国)。现在我正在传递来自印度的日期(28/09/2010 10:00:00 AM),但美国的日期不同。如何转换日期?转换应该在客户端还是服务器端进行?服务器如何知道客户端给出的日期是当前日期?
谢谢, 拉维
I have a date porblem in flex applications.
while submit the date in flex applcation (28/09/2010 10:00:00 AM) as a string, the date is cobnverted in to Date object inserver side and displayig the result.
But i install the server in other location (Ex:- USA) .Now i am passing the date from india(28/09/2010 10:00:00 AM) But the date in the USA is different. How to convert the date? Conversion should be happen in client side or server side? How the server knows the date which is given by client is the current date?
Thanks,
Ravi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在服务器上将日期保存为 UTC(通用时间),并在客户端上检索时使用 Date 类 timeZoneOffset 属性将日期设置为客户端的当前位置
You can save the date as UTC ( universal time ) on the server , and when retrieved on the client use the Date class timeZoneOffset property to set the date to the client's current location