java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > SpringBoot读取resources文件

SpringBoot中读取jar包中的resources目录下的文件的三种方式

作者:sco5282

这篇文章给大家总结了SpringBoot读取 jar 包中的 resources 目录下的文件的三种方式,文中有详细的代码示例供大家参考,,需要的朋友可以参考下

读取 resources 目录下的文件路径时,需要注意一点:在本地开发时,我们是能够通过代码获取到这个文件的绝对路径的(如:在 c 盘下或者 d 盘下的);但部署后,项目是通过打成 jar 包运行的,里面的文件是没有实际路径的(只有相对于项目名的相对路径)。

因为最后肯定是打包部署的,所以掌握针对后者的这种方式来读取文件是很有必要的。

代码图如下:

方式一:(重要)

通过 T.class.getClassLoader().getResourceAsStream() 方法。如:我要读取 config 文件夹下的 test.properties 文件:

这是一个公共方法,用来读取文件中的内容的方法,下面就不再重复了:

public static void printFileContent(Object obj) throws IOException {
    if (null == obj) {
        throw new RuntimeException("参数为空");
    }
    BufferedReader reader = null;
    // 如果是文件路径
    if (obj instanceof String) {
        reader = new BufferedReader(new FileReader(new File((String) obj)));
    // 如果是文件输入流
    } else if (obj instanceof InputStream) {
        reader = new BufferedReader(new InputStreamReader((InputStream) obj));
    }
    String line = null;
    while ((line = reader.readLine()) != null) {
        System.out.println(line);
    }
    reader.close();
}

读取方法:

public class ResourceUtil {
    public void getResource(String fileName) throws IOException{
        InputStream in = this.getClass().getClassLoader().getResourceAsStream(fileName);
        printFileContent(in);
    }
    public static void main(String[] args) throws IOException {
        new ResourceUtil().getResource("config/test.properties");
    }
}

即使是一个 jar 包,也依旧能读取到。

此方法默认是从 classpath 路径(即:src 或 resources 路径下)下查找文件的,所以,路径前不需要加 “/”。

方式二:(重要)

通过 T.class..getResourceAsStream() 方法。

public void getResource2(String fileName) throws IOException{
    InputStream in = this.getClass().getResourceAsStream("/" + fileName);
    printFileContent(in);
}
public static void main(String[] args) throws IOException {
    new ResourceUtil().getResource2("config/test.properties");
}

方法默认也是从 classpath 路径(即:src 或 resources 路径下)下查找文件的,但它的路径前为什么需要加 “/” 呢?

这个是跟要读取的文件与当前.class 文件的位置有关。

看看编译后的文件路径:

当前文件 ResourceUtil.class 与要加载的文件 test.properties 的位置如上:
很显然 test.properties 和 ResourceUtil.class 不在同一个文件夹下。

那读取的时候是要带上相对路径的,那么,这会有两种情况:

举例:

  • 如果 test.properties 和 ResourceUtil 在同一个文件夹下,那么:this.getClass().getResourceAsStream(“test.properties”)
  • 如果 test.properties 和 ResourceUtil 不在同一个文件夹下,那么:this.getClass().getResourceAsStream(“/config/test.properties”)

如果测试,不要在源文件下添加配置文件,因为编译后,在相应的路径下看不见此配置文件。可以使用 Test.java 代替。

即使是一个 jar 包,也依旧能读取到。

方式三:(重要)

通过 ClassPathResource 方法:

public void getResource3(String fileName) throws IOException{
    ClassPathResource classPathResource = new ClassPathResource(fileName);
    printFileContent(classPathResource.getInputStream());
}
public static void main(String[] args) throws IOException {
    new ResourceUtil().getResource3("config/test.properties");
}

path 前加不加 “/” 无所谓。

即使是一个 jar 包,也依旧能读取到。

到此这篇关于SpringBoot中读取jar包中的resources目录下的文件的三种方式的文章就介绍到这了,更多相关SpringBoot读取resources文件内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文