解决:class path resource [] cannot be resolved to absolute file path

报错信息

java.io.FileNotFoundException: class path resource [template/inuModel.inu] cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/usr/local/jar/dmb-core.jar!/BOOT-INF/classes!/template/inuModel.inu

报错代码

//获取inu模板文件
Resource resource = new ClassPathResource("template/inuModel.inu");
File inuModel = resource.getFile();

报错原因

通过ClassPathResource获取resources目录中的模板文件时,直接resource.getFile()获取,从而导致报错。

原因是项目构建成jar的形式之后,resources目录中的文件并不是直接存在系统中,而是嵌套在jar文件中

解决方式

使用resource.getInputStream()方法获取到该文件的InputStream
然后使用org.apache.commons.io.FileUtilscopyToFile()方法或copyInputStreamToFile()方法,将流拷贝的目标文件

//获取inu模板文件
Resource resource = new ClassPathResource("template/inuModel.inu");
File inuModel = new File(filePath);
FileUtils.copyToFile(resource.getInputStream(), inuModel);

你可能感兴趣的:(#,日常问题)