1

我在上传文件时遇到问题。它在 localhost 上完美运行,但是当部署到 EC2 时,它只是不接收多部分内容。fields.size() 在 ec2 tomcat 控制台中返回 0,但在 localhost 中返回 1。我使用 TOMCAT 7、Apache 文件上传和 io 和(mysql,虽然我认为这目前不相关)。所有的库都在 Tomcat lib 文件夹和WEB-INF/lib

这是处理上传的 servlet 的代码。我跳过了结尾,因为它太长而且无关紧要,因为它永远不会进入if(it.hasnext()

    // References: http://docs.oracle.com/javaee/6/tutorial/doc/glrbb.html
protected void doPost(HttpServletRequest request,
        HttpServletResponse response) throws ServletException, IOException {
    int taskid = Integer.parseInt(request.getParameter("id"));
    boolean isMultipartContent = ServletFileUpload
            .isMultipartContent(request);
    if (!isMultipartContent) {
        response.sendRedirect("/automaatnehindaja/taskview.html?id=" + taskid +"&result=incorrect");
        return;
    }
    FileItemFactory factory = new DiskFileItemFactory();
    ServletFileUpload upload = new ServletFileUpload(factory);

    try {
        List<FileItem> fields = upload.parseRequest(request);
        Iterator<FileItem> it = fields.iterator();
        System.out.println(fields.size());
        }
        if (it.hasNext()) {
            Connection c = null;
            PreparedStatement stmt = null;
            FileItem fileitem = it.next();
            if (!fileitem.getName().endsWith(".py")){
                //TODO other language support
                response.sendRedirect("/automaatnehindaja/taskview.html?id=" + taskid +"&result=incorrect");
                return;
            }
            if (fileitem.getSize()>1024*1024){
                response.sendRedirect("/automaatnehindaja/taskview.html?id=" + taskid +"&result=toolarge");
                return;
            }
            Class.forName("com.mysql.jdbc.Driver");

这是我用来上传的表格

<form id = "uploadform" method="post" enctype="multipart/form-data">
            <input type="file" name = "file">
            <button>Saada hindamisele</button>
        </form>     

如果还需要什么,请告诉我。

编辑:原来我犯了最愚蠢的错误。 @MultipartConfig(location = "tmp", fileSizeThreshold = 1024 * 1024, maxFileSize = 1024 * 1024, maxRequestSize = 1024 * 1024 * 2) 我在 windows 中开发,ec2 有 ubuntu。windows 接受 location = "/tmp" 而当然 linux 不接受。

4

0 回答 0