如何将 Date 对象从 Flex 传递到 JSP Servlet?

发布于 2024-11-04 22:50:37 字数 265 浏览 1 评论 0原文

我将一些参数作为 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 技术交流群。

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

发布评论

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

评论(1

燕归巢 2024-11-11 22:50:37

我认为您没有在 Java IF 中将 String 转换为 long,所以请尝试

String strDateinmilliseconds = request.getAttribute("FlexMilliseconds");

long dateinmilliseconds = Long.valueOf(strDateinmilliseconds);

Date resultdate = new Date(dateinmilliseconds);

SimpleDateFormat sdf = new SimpleDateFormat("MMM dd,yyyy HH:mm");

System.out.println(sdf.format(resultdate));

希望有帮助

I think you are not converting String to long in Java IF so Please try

String strDateinmilliseconds = request.getAttribute("FlexMilliseconds");

long dateinmilliseconds = Long.valueOf(strDateinmilliseconds);

Date resultdate = new Date(dateinmilliseconds);

SimpleDateFormat sdf = new SimpleDateFormat("MMM dd,yyyy HH:mm");

System.out.println(sdf.format(resultdate));

Hopes that helps

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