java.io.FileNotFoundException当通过getRealPath书面形式上传的

2019-07-19 18:57发布

Glassfish的似乎是增加额外的,以我要救我的图片文件过的路径,是有一些方法只使用绝对路径我的servlet以获取

String appPath = request.getServletContext().getRealPath("");

我已经花了几天时间尝试不同的方法来上传图片文件,并有一个servlet将它保存到磁盘。

我用这个例子: http://www.codejava.net/java-ee/servlet/how-to-write-upload-file-servlet-with-servlet-30-api

使用调试我可以看到文件名和路径信息被正确收集,但代码失败在`part.write(savePath +文件分割符+文件名);``

和GlassFish的异常报告:

exception

java.io.FileNotFoundException: C:\Program Files\glassfish-3.1.2.2\glassfish\domains\domain1\generated\jsp\com.onemore_onemore-web_war_1.0-SNAPSHOT\D:\Dropbox\Git\Brian_JEE\onemore\onemore\onemore-web\target\onemore-web-1.0-SNAPSHOT\image\screengrab_all_products.jpg (The filename, directory name, or volume label syntax is incorrect)

我可以看到正确的路径作为此异常的部分D:\Dropbox\Git\Brian_JEE\onemore\onemore\onemore-web\target\onemore-web-1.0-SNAPSHOT\image\screengrab_all_products.jpg

JSP

<form action="${pageContext.request.contextPath}/imageupload" method="post" enctype="multipart/form-data" name="productForm" id="productForm">
<input type="file" name="file" id="file">
<input type="submit" name="Submit" value="Submit"></td>
</form>

Servlet的

@WebServlet(name = "UploadImageServlet", urlPatterns = {"/imageupload"})
@MultipartConfig(fileSizeThreshold = 1024 * 1024 * 2, // 2MB 
maxFileSize = 1024 * 1024 * 10, // 10MB
maxRequestSize = 1024 * 1024 * 50)   // 50MB
public class UploadImageServlet extends HttpServlet {

    /**
     * Name of the directory where uploaded files will be saved, relative to the
     * web application directory.
     */
    private static final String SAVE_DIR = "image";

    /**
     * handles file upload
     */
    @Override
    protected void doPost(HttpServletRequest request,
            HttpServletResponse response) throws ServletException, IOException {
      // gets absolute path of the web application
        String appPath = request.getServletContext().getRealPath("");
        // constructs path of the directory to save uploaded file
        String savePath = appPath + File.separator + SAVE_DIR;

        // creates the save directory if it does not exists
        File fileSaveDir = new File(savePath);
        if (!fileSaveDir.exists()) {
            fileSaveDir.mkdir();
        }

        for (Part part : request.getParts()) {
            String fileName = extractFileName(part);
            part.write(savePath + File.separator + fileName);
        }

        request.setAttribute("message", "Upload has been done successfully!");
        getServletContext().getRequestDispatcher("/WEB-INF/jsp/newproduct.jsp").forward(
                request, response);
    }

    /**
     * Extracts file name from HTTP header content-disposition
     */
    private String extractFileName(Part part) {
        String contentDisp = part.getHeader("content-disposition");
        String[] items = contentDisp.split(";");
        for (String s : items) {
            if (s.trim().startsWith("filename")) {
                return s.substring(s.indexOf("=") + 2, s.length() - 1);
            }
        }
        return "";
    }
}

Answer 1:

切勿使用getRealPath()

你不应该在部署文件夹保存上传的文件。 我以前也说明了这许多次。 :一是这些解释都可以在这个答案找到只刷新页面后,可以上传图像 。

一些博客/文章发现了以往使用的任何JSP / Servlet的代码片断getRealPath()方法应采取与盐的袋子巨大。 其质量和作者的知识应该强烈质疑。 有没有即合理的现实世界中使用的情况下该方法 。

在部署文件夹外的固定路径保存上传的文件。 另见我设定的文件夹来存储使用通用FileUpload文件上传怎么办 。



文章来源: java.io.FileNotFoundException when writing uploaded file to disk via getRealPath()