springboot怎么获取resource文件路径

avatar
作者
猴君
阅读量:1

在Spring Boot中,可以使用ResourceLoader来获取resource文件的路径。

@Autowired private ResourceLoader resourceLoader;  public void getResourcePath() throws IOException {     Resource resource = resourceLoader.getResource("classpath:myfile.txt");     String filePath = resource.getFile().getAbsolutePath();     System.out.println("Resource file path: " + filePath); } 

在上面的例子中,resourceLoader.getResource()方法可以接受一个资源路径作为参数,其中classpath:前缀表示资源文件位于classpath路径下。getFile()方法用于获取资源文件的绝对路径。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!