解决上传文件提示java.io.IOException: java.io.FileNotFoundException:系统找不到指定的路径。
前端上传失败效果:
后端对应的异常输出信息:
关键信息:
java.io.IOException: java.io.FileNotFoundException: C:\Users\brendon\AppData\Local\Temp\tomcat.6510816303036534023.8099\work\Tomcat\localhost\ROOT\invoice\originalfile\2023-02-13\73432e18330dec9a05af2e74d068bfba83e0a88d.pdf (系统找不到指定的路径。)
Caused by: java.io.FileNotFoundException: C:\Users\brendon\AppData\Local\Temp\tomcat.6510816303036534023.8099\work\Tomcat\localhost\ROOT\invoice\originalfile\2023-02-13\73432e18330dec9a05af2e74d068bfba83e0a88d.pdf (系统找不到指定的路径。)
at java.io.FileOutputStream.open0(Native Method)
at java.io.FileOutputStream.open(FileOutputStream.java:270)
at java.io.FileOutputStream.(FileOutputStream.java:213)
at java.io.FileOutputStream.(FileOutputStream.java:162)
at org.apache.tomcat.util.http.fileupload.disk.DiskFileItem.write(DiskFileItem.java:406)
at org.apache.catalina.core.ApplicationPart.write(ApplicationPart.java:120)
… 92 more
此时后端对应的上传关键代码:
//通过SHA1生成唯一文件名 String filename = hex.replaceAll("-","") + "." + suffix; String fullPath = savePath +"/"+ filename; System.out.println(fullPath); try { //将文件保存指定目录 file.transferTo(new File(fullPath)); } catch (Exception e) { e.printStackTrace(); resultView.setCode(ResultEnums.FAILURE.getCode()); resultView.setMsg(ResultEnums.FAILURE.getMessage()+"保存文件异常"); return resultView; }
原因分析:
运行在保存文件 file.transferTo(new File(fullPath))处报错:
String fullPath = savePath +"/"+ filename;
是相对路径,指向invoice\originalfile\2023-02-13\73432e18330dec9a05af2e74d068bfba83e0a88d.pdf
file.transferTo 方法调用时,判断如果是相对路径,则使用temp目录,即C:\Users\brendon\AppData\Local\Temp\tomcat.6510816303036534023.8099\work\Tomcat\localhost\ROOT
位置不对,没有此目录存在,所以报错。
解决方案:transferTo 传入参数定义为绝对路径
关键代码:
File currFile = new File(new File(savePath).getAbsolutePath()+"/" + filename);
file.transferTo(currFile);
最终成功效果:
至此解决问题。
来源地址:https://blog.csdn.net/H_Dsheng/article/details/129018163