springBoot项目文件导出Linux下载地址报错

springBoot项目文件导出Linux下载地址报错

报错回顾

{“msg”:“class path resource [templates/animal.docx] cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/home/fangyi/20220125/fangyi-admin.jar!/BOOT-INF/classes!/templates/%e7%95%9c%e7%89%a7%e5%85%bd%e5%8c%bb%e9%98%b2%e7%96%ab%e6%8a%a5%e5%91%8a.docx”,“code”:500}

原因解析

当我把项目中需要导出的文件模板放在resource下面的templates 下 打成jar包之后 显示找不到这个模板路径,可以通过修改代码中获取文件路径的方式去解决

解决方式

//第一种方式
String path = new ClassPathResource("templates/animalsInjectionWord.docx").getFile().getPath();
File file = new File(path);
//第二种方式
StringBuilder builder = new StringBuilder();
ClassPathResource classPathResource = new ClassPathResource("templates/animalsInjectionWord.docx");
InputStreamReader reader = new InputStreamReader(classPathResource.getInputStream(),"UTF-8");
BufferedReader bufferedReader = new BufferedReader(reader);
String tempContent = null;
while((tempContent = bufferedReader.readLine()) != null){
	builder.append(tempContent);
}
bufferedReader.close();
//第三种方式
ApplicationHome applicationHome = new ApplicationHome(RuoYiApplication.class);
File jarF = applicationHome.getSource();
//第四种方式
InputStream inputStream = this.getClass().getResourceAsStream("templates/animalsInjectionWord.docx");
//第五种方式
InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("templates/animalsInjectionWord.docx");

使用完成之后别忘记关流

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值