springboot 读取resource目录下的文件

Posted 七彩的人生

tags:

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

Resource resource =new ClassPathResource("dictionary.txt");

        BufferedReader reader=null;  

            //reader=new BufferedReader(new FileReader(file));这样在web运行的时候,读取会乱码 
            reader=new BufferedReader(new InputStreamReader(resource.getInputStream(),"UTF-8")); 

 

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

SpringBoot配置文件——加载顺序

springboot 加载配置文件顺序

springboot 加载配置文件顺序

SpringBoot部署到Linux读取resources下的文件

SpringBoot部署到Linux读取resources下的文件

SpringBoot部署到Linux读取resources下的文件