共计 613 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以通过以下方式获取项目的资源路径:
- 使用
getClass().getResource()
方法:
URL resourceUrl = getClass().getResource("/path/to/resource/file");
String resourcePath = resourceUrl.getPath();
- 使用
ClassLoader.getResource()
方法:
URL resourceUrl = getClass().getClassLoader().getResource("path/to/resource/file");
String resourcePath = resourceUrl.getPath();
- 使用
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 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-20