java 网络应用程序中的文件上传显示找不到文件异常

File upload in java web application shows file not found exception

我正在使用 jsp 和 servlet 开发 Web 应用程序。我正在尝试上传一个文件,然后处理该文件的数据。为此,我的 jsp 代码是

<form action="LoadFile" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
     <input type="file" name="file" id="file" size="50" accept=".doc, .docx, .txt"/>
     <br />
     <input type="submit" value="Check Now" name="upload" id="upload"/>
</form>

Java 名为 "LoadFile.java" 的 servlet 在 processRequest 方法中包含以下代码

request.setCharacterEncoding("UTF-8");
        Part filePart = request.getPart("file");
        String fileName = getFileName(filePart);

        OutputStream outStream = null;
        InputStream filecontent = null;
        final PrintWriter writer = response.getWriter();

        try {
            outStream = new FileOutputStream(new File(File.separator
                    + fileName));

            filecontent = filePart.getInputStream();

            int read = 0;
            final byte[] bytes = new byte[1024];

            while ((read = filecontent.read(bytes)) != -1) {
                outStream.write(bytes, 0, read);
            }
            writer.println("New file " + fileName + " created at " + filePath);
        } catch (FileNotFoundException fne) {
            writer.println("You either did not specify a file to upload or are "
                    + "trying to upload a file to a protected or nonexistent "
                    + "location.");
            writer.println("<br/> ERROR: " + fne.getMessage());

        }

每当我尝试上传文件时,它都会给出 FileNotFoundExceptin。 我需要做什么?

在您的 Web 应用程序 WEB-INF 文件夹中创建一个名为 files 的文件夹并更改 FileOutputStream 的代码,如下所示。

outStream = new FileOutputStream(new File(request.getRealPath("/WEB-INF/")+ "files"+ File.separator
                    + fileName));