java怎么获取项目resource路径

58次阅读
没有评论

共计 613 个字符,预计需要花费 2 分钟才能阅读完成。

在 Java 中,可以通过以下方式获取项目的资源路径:

  1. 使用 getClass().getResource() 方法:
URL resourceUrl = getClass().getResource("/path/to/resource/file");
String resourcePath = resourceUrl.getPath();
  1. 使用 ClassLoader.getResource() 方法:
URL resourceUrl = getClass().getClassLoader().getResource("path/to/resource/file");
String resourcePath = resourceUrl.getPath();
  1. 使用 Thread.currentThread().getContextClassLoader().getResource() 方法:
URL resourceUrl = Thread.currentThread().getContextClassLoader().getResource("path/to/resource/file");
String resourcePath = resourceUrl.getPath();

以上方法中,"/path/to/resource/file"表示资源文件相对于 src/main/resources 目录的路径。请根据自己的文件结构进行相应的调整。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-20发表,共计613字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)