如何将 Date 对象从 Flex 传递到 JSP Servlet?
我将一些参数作为 POST 从 Flex WebApplication 传递到 Servlet。我能够正确传递和检索字符串。
我在 Flex 代码中使用了 new Date().getTime() 并尝试传递时间戳变量,希望在 servlet 中解析它并将其转换为 java.util.Date目的。但是当我尝试从 request.getParameter
获得的字符串中解析变量时,我收到了 NumberFormatException。
有什么解决办法吗?
I am passing some parameters as POST to a Servlet from my Flex WebApplication. I am able to pass and retrieve strings properly.
I used new Date().getTime()
in my flex code and tried passing the timestamp variable hoping to parse it at the servlet and convertit into a java.util.Date
object. But i am getting a NumberFormatException when i try to parse the variable from the string that i got from request.getParameter
.
Any solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您没有在 Java IF 中将 String 转换为 long,所以请尝试
希望有帮助
I think you are not converting String to long in Java IF so Please try
Hopes that helps