10

我有一个用于许多不同操作的 servlet,用于Front Controller 模式。有谁知道是否可以判断发回给它的数据是否是 enctype="multipart/form-data"?在我决定之前我无法读取请求参数,因此我无法将请求分派给正确的控制器。

有任何想法吗?

4

7 回答 7

21

如果您要尝试使用上面介绍的 request.getContentType() 方法,请注意:

  1. request.getContentType() 可能返回 null。
  2. request.getContentType() 可能不等于“multipart/form-data”,但可能只是从它开始。

考虑到这一点,您应该运行的检查是:

if (request.getContentType() != null && request.getContentType().toLowerCase().indexOf("multipart/form-data") > -1 ) {
// Multipart logic here
}
于 2009-02-23T21:47:22.557 回答
17

是的,Content-type用户代理请求中的标头应该包括multipart/form-data(至少)HTML4规范中描述的:

http://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.2

于 2008-09-15T20:13:58.147 回答
8

您可以调用方法来获取内容类型。

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”。

不要忘记:

  1. request.getContentType() 可能返回 null。

  2. request.getContentType() 可能不等于“multipart/form-data”,但可能只是从它开始。

所以,考虑到这一切:

if (request.getContentType() != null && 
    request.getContentType().toLowerCase().indexOf("multipart/form-data") > -1 ) 
{
    << code block >>
} 
于 2008-09-15T20:17:15.500 回答
3

ServletFileUpload 实现 isMultipartContent()。也许您可以根据您的需要解除此实现(而不是通过开销来创建 ServletFileUpload)。

http://www.docjar.com/html/api/org/apache/commons/fileupload/servlet/ServletFileUpload.java.html

于 2011-08-10T12:54:31.567 回答
1

至少在某种程度上,您必须阅读请求参数才能确定这一点。ServletRequest 类有一个您想要查看的 getContentType 方法。

于 2008-09-15T20:19:39.037 回答
1

要扩展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/")) { 
    ... 
}
于 2019-06-05T12:40:27.753 回答
0

https://docs.oracle.com/javaee/6/api/javax/servlet/http/HttpServletRequest.html#getParts()

java.util.Collection getParts()

抛出:ServletException - 如果此请求不是 multipart/form-data 类型

于 2019-01-11T06:24:40.390 回答