当前位置:   article > 正文

spring boot 读取resources目录下文件的几种方式_springboot resources文件访问

springboot resources文件访问

1.使用注解

import org.springframework.beans.factory.annotation.Value;
import cn.hutool.core.io.IoUtil;
import org.springframework.core.io.Resource;

@Value("classpath:city.json")
Resource resource;

@PostConstruct
public void init() {
    // 转String
    String cityJson = IoUtil.readUtf8(resource.getInputStream());
    
    // 转List<String>
    List<String> list = IoUtil.readUtf8Lines(resource.getInputStream(), new ArrayList<>());
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

2.使用ResourceLoader接口

import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.stereotype.Component;
@Component
public class YourComponent {
    private final ResourceLoader resourceLoader;
    public YourComponent(ResourceLoader resourceLoader) {
        this.resourceLoader = resourceLoader;
    }
    public void getResource() throws IOException {
        Resource resource = resourceLoader.getResource("classpath:your-file.txt");
        InputStream inputStream = resource.getInputStream();
        // 对文件进行操作,比如读取内容等
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

3.使用ClassPathResource类

import org.springframework.core.io.ClassPathResource;

public void getResource() throws IOException {
    ClassPathResource resource = new ClassPathResource("your-file.txt");
    InputStream inputStream = resource.getInputStream();
    // 对文件进行操作,比如读取内容等
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

4.使用ResourceUtils.getFile()方法

注意这种方式在jar包里无法使用

import org.springframework.util.ResourceUtils;
import cn.hutool.core.io.FileUtil;

public void getResource() throws IOException {
    File file = ResourceUtils.getFile("classpath:your-file.txt");
    // 对文件进行操作,比如读取内容等
    // 读取文件内容到集合
    List<String> list= FileUtil.readUtf8Lines(todayFile);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

参考文档:
springboot类路径下excel、word文件下载为空和打不开记录

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/815945
推荐阅读
相关标签
  

闽ICP备14008679号