Spring Boot中如何读取resources目录下的文件

Posted 楼兰胡杨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot中如何读取resources目录下的文件相关的知识,希望对你有一定的参考价值。

      在Java编码过程中,我们常常希望读取项目内的配置文件,按照Maven的习惯,这些文件一般放在项目的src/main/resources下,因此,合同协议PDF模板、Excel格式的统计报表等模板的存放位置是resources/template/test.pdf,下面提供两种读取方式,它们分别在windows和Linux环境(linux下jar包)都可以正常运行。

方法一 ClassPathResource

String pdfFilePath = "template/test.pdf";
Resource resource = new ClassPathResource(pdfFilePath);

     通过如下方法可以转Resource换成InputStream :

InputStream is = resource.getInputStream();

 

方法二 getContextClassLoader

InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream(pdfFilePath);

 

测试用例

     public static void main(String[] args) {
        try {
            String pdfFilePath = "template/test.pdf";
            Resource resource = new ClassPathResource(pdfFilePath);
            System.out.println( resource.getURI() + " -- ****** path = ");
 
            if (resource.isReadable()) {
                //每次都会打开一个新的流
                InputStream is = resource.getInputStream();
                System.out.println("方法一 " + is.available());
            }
            InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream(pdfFilePath);
            System.out.println("方法二 " + inputStream.available());
        } catch (IOException e) {
            e.printStackTrace();
        }
 
    }

 

       如果有其它读取的办法,欢迎留言。

以上是关于Spring Boot中如何读取resources目录下的文件的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 读取静态资源文件

Spring Boot 读取静态资源文件

Spring Boot 从 YAML(属性)文件中读取数组

《Spring Boot实战》示例代码问题

spring-boot项目直接读取jar包内文件的最简单方法

springboot-项目获取resources下文件的方法解决乱码