SpringBoot读取resources目录下的文件

​ 传统的使用new File()打成jar包会找不到文件,可以使用spring提供的ClassPathResource()类访问resources下的文件

ClassPathResource classPathResource = new ClassPathResource("status/xxx.xml");
InputStream inputStream = classPathResource.getInputStream();
posted @ 2021-03-29 16:38  敬敬不想造轮子  阅读(223)  评论(0编辑  收藏  举报