会话在 MultipartRequest 中丢失
我正在向我的应用程序添加文件上传功能。我遇到一个问题,每当我在 jsp 页面中使用 enctype ="multipart/form-data" 时,会话就会变为空。当我删除上面的 enctype 时,它工作正常,但文件上传不再起作用。 您知道如何解决这个问题吗? 任何建议将受到高度赞赏。多谢。
I'm adding in file uploading features to my application. I'm having a problem that whenever I use enctype ="multipart/form-data" in my jsp page, the session will become null. It works fine when I remove the above enctype, but the file uploading no longer function.
Do you have any idea how to over come this problem?
Any suggestion will be highly appreciated. Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从您的描述来看,会话似乎不是空的,但您没有像以前那样从会话中获取属性。
尝试像 Apache Commons Fileupload 这样的方法来获得一个非常简单的解决方案。
From your description it seems that not the session is null but you don't get the attributes from the session in the way you used to.
Try something like Apache Commons Fileupload to have a quite easy solution.