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

使用完成之后别忘记关流

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring Boot中,要实现文件导出到服务器并返回下载地址,可以按照以下步骤进行操作: 1. 首先,在Spring Boot项目的工程目录下创建一个文件夹,用于存放导出文件。可以通过在配置文件中设置文件路径来指定该文件夹的位置,如在application.properties中添加以下配置: ```properties file.export.path=/path/to/export/folder/ ``` 2. 创建一个用于导出文件的Controller类,使用@RequestMapping注解指定路径。 ```java @RestController @RequestMapping("/export") public class ExportController { // ... } ``` 3. 在Controller中编写处理导出请求的方法。 ```java @GetMapping("/file") public ResponseEntity<Resource> exportFile() throws IOException { // 创建一个临时文件 File tempFile = File.createTempFile("export", ".txt", new File("file.export.path")); // 将数据写入到临时文件中 // ... // 创建一个Resource对象,指定文件的类型和路径 Resource resource = new UrlResource(tempFile.toURI()); // 返回资源对象以供下载 return ResponseEntity.ok() .header(HttpHeaders.CONTENT_DISPOSITION, "attachment;filename=" + tempFile.getName()) .contentType(MediaType.APPLICATION_OCTET_STREAM) .body(resource); } ``` 4. 在导出文件的方法中,首先创建一个临时文件,将待导出的数据写入到临时文件中。然后,使用UrlResource类将临时文件封装成Resource对象。最后,通过ResponseEntity将Resource对象返回给客户端,同时指定文件的名称及下载方式。 这样,当客户端发送请求至/export/file路径时,服务器会将导出文件保存到指定的文件夹中,并返回可供下载文件地址给客户端。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值