解决: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);
评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值