如何将 JSP 中的多部分/混合内容解析为 servlet
我正在从 JSP 向 servlet 发送 multipart/mixed 内容消息,但是当我使用
ServletFileUpload.isMultipartContent(请求);
方法来检查请求是否是多部分的,我得到的输出为“false”。我的消息的内容类型标头如下所示:
multipart/mixed;
boundary="----=_Part_26_2184190.1271924416255"
谁能告诉我如何使用 Apache fileupload API 解析请求?上述方法如何将输出返回为“true”
I'm sending multipart/mixed content message from JSP to servlets but when I used
ServletFileUpload.isMultipartContent(request);
method to check if the request is Multipart or not, I'm getting the output as "false". This is how content type header of my message is looking like:
multipart/mixed;
boundary="----=_Part_26_2184190.1271924416255"
Could anyone please tell me how can I parse the request using Apache fileupload API? How the above method can return me an output as "true"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
条件是:
post
multipart/
开头 通过request.getMethod()
检查这两个并request.getContentType()
The conditions are:
post
multipart/
Check these two via
request.getMethod()
andrequest.getContentType()