SpringBoot下获取resources目录下文件的常用方法

2024-08-29 13:20

本文主要是介绍SpringBoot下获取resources目录下文件的常用方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

哈喽,大家好,今天给大家带来SpringBoot获取resources目录下文件的常用方法,示例中的方法是读取resources目录下的txt和xlsx文件,并将xlsx导出到excel的简单写法。完整代码放在最后。

通过this.getClass()方法获取

method1 - method4都是通过这个方法获取文件的写法,这四种写法在idea中都可以正常运行,jar包执行后method1和method2报错,提示找不到文件,method3和method4可以正常运行

通过ClassPathResource获取

method5是通过这种方法实现,idea中可以正常运行,打包后的jar中提示找不到文件

通过hutool工具类ResourceUtil获取

method6是通过这种方法实现,和method情况一样,同样是idea中可以正常运行,导出的jar中提示找不到文件

总结

不想折腾的同学可以直接用method3和method4的方法来使用,也可以将模板和资源文件外置,通过绝对路径获取对应文件。有好的方法也欢迎大家一起交流沟通~

代码

import cn.hutool.core.io.FileUtil;
import cn.hutool.core.io.resource.ClassPathResource;
import cn.hutool.core.io.resource.ResourceUtil;
import com.alibaba.excel.EasyExcel;
import com.alibaba.excel.ExcelWriter;
import com.alibaba.excel.enums.WriteDirectionEnum;
import com.alibaba.excel.write.metadata.WriteSheet;
import com.alibaba.excel.write.metadata.fill.FillConfig;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;import javax.servlet.http.HttpServletResponse;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.List;@RestController
@RequestMapping("/temp")
public class TemplateController {/*** this.getClass()方法获取* @param response* @throws IOException*/@RequestMapping("/method1")public void method1(HttpServletResponse response) throws IOException {System.out.println("----------method1 start");String filename = "template.xlsx";String bashPatch = this.getClass().getClassLoader().getResource("").getPath();System.out.println(bashPatch);String textFile = "template.txt";String textPath = this.getClass().getClassLoader().getResource("").getPath();List<String> dataList = FileUtil.readUtf8Lines(textPath + "/template/" + textFile);for (String data : dataList) {System.out.println(data);}try (ExcelWriter excelWriter =EasyExcel.write(response.getOutputStream()).autoCloseStream(false) // 不要自动关闭,交给 Servlet 自己处理
//                             .withTemplate(resource.getFile().getAbsolutePath()).withTemplate(bashPatch + "/template/" + filename).build()) {WriteSheet writeSheet = EasyExcel.writerSheet(0).build();FillConfig userFillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();FillConfig titleFillConfig = FillConfig.builder().direction(WriteDirectionEnum.HORIZONTAL).build();excelWriter.finish();}try {response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, StandardCharsets.UTF_8.name()));} catch (UnsupportedEncodingException e) {throw new RuntimeException(e);}response.setContentType("application/vnd.ms-excel;charset=UTF-8");}@RequestMapping("/method2")public void method2(HttpServletResponse response) throws IOException {System.out.println("----------method2 start");String filename = "template.xlsx";String bashPatch = this.getClass().getClassLoader().getResource("template").getPath();System.out.println(bashPatch);String textFile = "template.txt";String textPath = this.getClass().getClassLoader().getResource("template").getPath();List<String> dataList = FileUtil.readUtf8Lines(textPath + "/" + textFile);for (String data : dataList) {System.out.println(data);}try (ExcelWriter excelWriter =EasyExcel.write(response.getOutputStream()).autoCloseStream(false) // 不要自动关闭,交给 Servlet 自己处理
//                             .withTemplate(resource.getFile().getAbsolutePath()).withTemplate(bashPatch + "/" + filename).build()) {WriteSheet writeSheet = EasyExcel.writerSheet(0).build();FillConfig userFillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();FillConfig titleFillConfig = FillConfig.builder().direction(WriteDirectionEnum.HORIZONTAL).build();excelWriter.finish();}try {response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, StandardCharsets.UTF_8.name()));} catch (UnsupportedEncodingException e) {throw new RuntimeException(e);}response.setContentType("application/vnd.ms-excel;charset=UTF-8");}@RequestMapping("/method3")public void method3(HttpServletResponse response) throws IOException {System.out.println("----------method3 start");String filename = "template.xlsx";InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("template" + "/" + filename);
//        System.out.println(inputStream);String textFile = "template.txt";InputStream textStream = this.getClass().getClassLoader().getResourceAsStream("template" + "/" + textFile);BufferedReader reader = new BufferedReader(new InputStreamReader(textStream));String line;try {while ((line = reader.readLine()) != null) {System.out.println(line);}} catch (IOException e) {e.printStackTrace(); // 异常处理}try (ExcelWriter excelWriter =EasyExcel.write(response.getOutputStream()).autoCloseStream(false) // 不要自动关闭,交给 Servlet 自己处理
//                             .withTemplate(resource.getFile().getAbsolutePath()).withTemplate(inputStream).build()) {WriteSheet writeSheet = EasyExcel.writerSheet(0).build();FillConfig userFillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();FillConfig titleFillConfig = FillConfig.builder().direction(WriteDirectionEnum.HORIZONTAL).build();excelWriter.finish();}try {response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, StandardCharsets.UTF_8.name()));} catch (UnsupportedEncodingException e) {throw new RuntimeException(e);}response.setContentType("application/vnd.ms-excel;charset=UTF-8");}@RequestMapping("/method4")public void method4(HttpServletResponse response) throws IOException {System.out.println("----------method4 start");String filename = "template.xlsx";InputStream inputStream = this.getClass().getResourceAsStream("/template" + "/" + filename);
//        System.out.println(inputStream);String textFile = "template.txt";InputStream textStream = this.getClass().getResourceAsStream("/template" + "/" + textFile);BufferedReader reader = new BufferedReader(new InputStreamReader(textStream));String line;try {while ((line = reader.readLine()) != null) {System.out.println(line);}} catch (IOException e) {e.printStackTrace(); // 异常处理}try (ExcelWriter excelWriter =EasyExcel.write(response.getOutputStream()).autoCloseStream(false) // 不要自动关闭,交给 Servlet 自己处理
//                             .withTemplate(resource.getFile().getAbsolutePath()).withTemplate(inputStream).build()) {WriteSheet writeSheet = EasyExcel.writerSheet(0).build();FillConfig userFillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();FillConfig titleFillConfig = FillConfig.builder().direction(WriteDirectionEnum.HORIZONTAL).build();excelWriter.finish();}try {response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, StandardCharsets.UTF_8.name()));} catch (UnsupportedEncodingException e) {throw new RuntimeException(e);}response.setContentType("application/vnd.ms-excel;charset=UTF-8");}/*** 通过ClassPathResource获取* @param response* @throws IOException*/@RequestMapping("/method5")public void method5(HttpServletResponse response) throws IOException {System.out.println("----------method5 start");String filename = "template.xlsx";ClassPathResource classPathResource = new ClassPathResource("template" + "/" + filename);String textFile = "template.txt";ClassPathResource textResource = new ClassPathResource("template" + "/" + textFile);List<String> dataList = FileUtil.readUtf8Lines(textResource.getAbsolutePath());for (String data : dataList) {System.out.println(data);}try (ExcelWriter excelWriter =EasyExcel.write(response.getOutputStream()).autoCloseStream(false) // 不要自动关闭,交给 Servlet 自己处理.withTemplate(classPathResource.getAbsolutePath()).build()) {WriteSheet writeSheet = EasyExcel.writerSheet(0).build();FillConfig userFillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();FillConfig titleFillConfig = FillConfig.builder().direction(WriteDirectionEnum.HORIZONTAL).build();excelWriter.finish();}try {response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, StandardCharsets.UTF_8.name()));} catch (UnsupportedEncodingException e) {throw new RuntimeException(e);}response.setContentType("application/vnd.ms-excel;charset=UTF-8");}/*** 通过hutool工具类ResourceUtil获取* @param response* @throws IOException*/@RequestMapping("/method6")public void method6(HttpServletResponse response) throws IOException {System.out.println("----------method6 start");String filename = "template.xlsx";String filePath = ResourceUtil.getResource("template" + "/" + filename).getPath();String textFile = "template.txt";String textPath = ResourceUtil.getResource("template" + "/" + textFile).getPath();List<String> dataList = FileUtil.readUtf8Lines(textPath);for (String data : dataList) {System.out.println(data);}try (ExcelWriter excelWriter =EasyExcel.write(response.getOutputStream()).autoCloseStream(false) // 不要自动关闭,交给 Servlet 自己处理.withTemplate(filePath).build()) {WriteSheet writeSheet = EasyExcel.writerSheet(0).build();FillConfig userFillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();FillConfig titleFillConfig = FillConfig.builder().direction(WriteDirectionEnum.HORIZONTAL).build();excelWriter.finish();}try {response.addHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode(filename, StandardCharsets.UTF_8.name()));} catch (UnsupportedEncodingException e) {throw new RuntimeException(e);}response.setContentType("application/vnd.ms-excel;charset=UTF-8");}}

pom依赖

        <dependency><groupId>cn.hutool</groupId><artifactId>hutool-all</artifactId><version>5.8.9</version></dependency><dependency><groupId>com.alibaba</groupId><artifactId>easyexcel</artifactId><version>3.3.3</version></dependency>

这篇关于SpringBoot下获取resources目录下文件的常用方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1117978

相关文章

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

Java并发编程必备之Synchronized关键字深入解析

《Java并发编程必备之Synchronized关键字深入解析》本文我们深入探索了Java中的Synchronized关键字,包括其互斥性和可重入性的特性,文章详细介绍了Synchronized的三种... 目录一、前言二、Synchronized关键字2.1 Synchronized的特性1. 互斥2.

Spring Boot 配置文件之类型、加载顺序与最佳实践记录

《SpringBoot配置文件之类型、加载顺序与最佳实践记录》SpringBoot的配置文件是灵活且强大的工具,通过合理的配置管理,可以让应用开发和部署更加高效,无论是简单的属性配置,还是复杂... 目录Spring Boot 配置文件详解一、Spring Boot 配置文件类型1.1 applicatio

macOS无效Launchpad图标轻松删除的4 种实用方法

《macOS无效Launchpad图标轻松删除的4种实用方法》mac中不在appstore上下载的应用经常在删除后它的图标还残留在launchpad中,并且长按图标也不会出现删除符号,下面解决这个问... 在 MACOS 上,Launchpad(也就是「启动台」)是一个便捷的 App 启动工具。但有时候,应

Java中StopWatch的使用示例详解

《Java中StopWatch的使用示例详解》stopWatch是org.springframework.util包下的一个工具类,使用它可直观的输出代码执行耗时,以及执行时间百分比,这篇文章主要介绍... 目录stopWatch 是org.springframework.util 包下的一个工具类,使用它

Java进行文件格式校验的方案详解

《Java进行文件格式校验的方案详解》这篇文章主要为大家详细介绍了Java中进行文件格式校验的相关方案,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、背景异常现象原因排查用户的无心之过二、解决方案Magandroidic Number判断主流检测库对比Tika的使用区分zip