ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

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

2022-01-28 10:34:47  阅读:163  来源: 互联网

标签:templates docx springBoot animalsInjectionWord 报错 Linux new path


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");

使用完成之后别忘记关流

标签:templates,docx,springBoot,animalsInjectionWord,报错,Linux,new,path
来源: https://blog.csdn.net/qq_43419105/article/details/122727291

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有