根据Tomcat7's documentation,将连接器中的maxPostSize
设置为小于或等于0
的值可能会禁用发布请求大小的限制。但是实际上,当我将其设置为0
时,以multipart / form-data enctype上载文件仍然会出现超出最大大小限制的错误。当我将其设置为-1
时,没有限制发生,但是发生了其他奇怪的事情。
以下是用于上传带有文本输入字段的文件的HTML代码:
<html>
<head>
</head>
<body>
test
<form action="UploadFile" method="post" enctype="multipart/form-data">
<input type="text" name="description" />
<input type="file" name="file" />
<input type="submit" />
</form>
</body>
</html>
服务器端代码使用Servlet 3.0 API:
import javax.servlet.http.Part;
import javax.servlet.annotation.MultipartConfig;
import java.io.InputStream;
import java.io.FileOutputStream;
import java.io.PrintWriter;
import java.util.Collection;
import com.google.gson.JsonObject;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
@MultipartConfig(fileSizeThreshold=1024*1024*10, // 10 MB
maxFileSize=1024*1024*50, // 50 MB
maxRequestSize=1024*1024*100) // 100 MB
public class UploadFile extends HttpServlet
{
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws Exception
{
// Retrieves <input type="text" name="description">
String description = request.getParameter("description");
JsonObject jsonRet = new JsonObject();
JsonArray jsonArray = new JsonArray();
jsonRet.add("files", jsonArray);
try {
Collection<Part> allParts = request.getParts(); // Retrieves all uploaded files
for (Part filePart : allParts) {
String filename = null;
if (filePart == null || filePart.getContentType() == null) {
System.out.println("part is null");
continue;
} else {
filename = getFilename(filePart);
}
System.out.println(filename);
InputStream filecontent = filePart.getInputStream();
FileOutputStream fos = new FileOutputStream("/tmp/uploadfile/" + filename);
byte[] buffer = new byte[1024 * 4];
int c = 0;
while ((c = filecontent.read(buffer)) != -1) {
fos.write(buffer, 0, c);
}
JsonObject jsonObj = new JsonObject();
jsonObj.addProperty("name", filename);
jsonObj.addProperty("size", filePart.getSize());
jsonObj.addProperty("url", "the-url");
jsonObj.addProperty("thumbnail_url", "the-thumb");
jsonObj.addProperty("delete_url", "the-delete");
jsonObj.addProperty("delete_type", "DELETE");
jsonArray.add(jsonObj);
}
response.setCharacterEncoding("utf-8");
response.setContentType("text/plain");
PrintWriter writer = response.getWriter();
writer.write(jsonRet.toString());
} catch (Exception e) {
throw e;
}
}
private static String getFilename(Part part)
{
for (String cd : part.getHeader("Content-Disposition").split(";")) {
if (cd.trim().startsWith("filename")) {
String filename = cd.substring(cd.indexOf('=') + 1).trim().replace("\"", "");
return filename.substring(filename.lastIndexOf('/') + 1).substring(filename.lastIndexOf('\\') + 1); // MSIE fix.
}
}
return null;
}
如果将
maxPostSize
设置为-1
,并将文本字段“描述”保留为空白,则会响应:java.lang.String.<init>(String.java:481)
org.apache.tomcat.util.http.fileupload.disk.DiskFileItem.getString(DiskFileItem.java:328)
org.apache.catalina.connector.Request.parseParts(Request.java:2752)
org.apache.catalina.connector.Request.parseParameters(Request.java:3083)
org.apache.catalina.connector.Request.getParameter(Request.java:1151)
org.apache.catalina.connector.RequestFacade.getParameter(RequestFacade.java:384)
com.bluepyxis.servlet.HttpServletRequestWrapper.getParameter(HttpServletRequestWrapper.java:40)
com.bluepyxis.actions.UploadFile.process(UploadFile.java:34)
......
如果将
maxPostSize
设置为正值或在描述字段中填写一些文本,则一切正常。所以我想知道,为什么会发生这种情况?在防止
NullPointerException
填充字段时,有什么方法可以设置帖子大小不受限制?提前致谢。
最佳答案
该文档不是很正确。 maxPostSize = 0导致限制为零。 -1是无限制的正确值。我很快会解决的。