gpt4 book ai didi

java - Java中从src/main/resources访问静态文件

转载 作者:行者123 更新时间:2023-12-01 17:57:39 24 4
gpt4 key购买 nike

在我的 SpringBoot 项目中,我想读取位于以下位置的图像文件:

enter image description here

我尝试过:

URL url = getClass().getResource("android.png");
File f = new File(url.getPath());

和:

URL url = getClass().getResource("static/images/android.png");
File f = new File(url.getPath());

但结果为空。

编辑:这有效

try {
File file = new ClassPathResource("static/images/android.png").getFile();
} catch (IOException e) {

}

最佳答案

如果你使用Spring,那么最好使用内置的 ClassPathResource类来访问类路径中的文件。

关于java - Java中从src/main/resources访问静态文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43387151/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com