我有一个用于许多不同操作的 servlet,用于Front Controller 模式。有谁知道是否可以判断发回给它的数据是否是 enctype="multipart/form-data"?在我决定之前我无法读取请求参数,因此我无法将请求分派给正确的控制器。
有任何想法吗?
我有一个用于许多不同操作的 servlet,用于Front Controller 模式。有谁知道是否可以判断发回给它的数据是否是 enctype="multipart/form-data"?在我决定之前我无法读取请求参数,因此我无法将请求分派给正确的控制器。
有任何想法吗?
如果您要尝试使用上面介绍的 request.getContentType() 方法,请注意:
考虑到这一点,您应该运行的检查是:
if (request.getContentType() != null && request.getContentType().toLowerCase().indexOf("multipart/form-data") > -1 ) {
// Multipart logic here
}
是的,Content-type
用户代理请求中的标头应该包括multipart/form-data
(至少)HTML4规范中描述的:
http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2
您可以调用方法来获取内容类型。
http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletRequest.html#getContentType()
根据http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2,内容类型将为“multipart/form-data”。
不要忘记:
request.getContentType() 可能返回 null。
request.getContentType() 可能不等于“multipart/form-data”,但可能只是从它开始。
所以,考虑到这一切:
if (request.getContentType() != null &&
request.getContentType().toLowerCase().indexOf("multipart/form-data") > -1 )
{
<< code block >>
}
ServletFileUpload 实现 isMultipartContent()。也许您可以根据您的需要解除此实现(而不是通过开销来创建 ServletFileUpload)。
http://www.docjar.com/html/api/org/apache/commons/fileupload/servlet/ServletFileUpload.java.html
至少在某种程度上,您必须阅读请求参数才能确定这一点。ServletRequest 类有一个您想要查看的 getContentType 方法。
要扩展awm129 的答案- Apache commons 的实现对应于:
if (request != null
&& request.getContentType() != null
&& request.getContentType().toLowerCase(Locale.ENGLISH).startsWith("multipart/")) {
...
}
您可以使用 Apache commons' 将其写得更短org.apache.commons.lang3.StringUtils
:
if (StringUtils.startsWithIgnoreCase(request.getContentType(), "multipart/")) {
...
}
https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getParts()
java.util.Collection getParts()
抛出:ServletException - 如果此请求不是 multipart/form-data 类型