当前位置:首页 > 行业动态 > 正文

java 获取resource目录路径

在Java中,获取resource文件路径的方法有以下几种:

1、使用类加载器获取资源文件路径

2、使用ClassPathResource获取资源文件路径

3、使用FileSystemResource获取资源文件路径

4、使用URL获取资源文件路径

5、使用相对路径获取资源文件路径

下面分别详细介绍这几种方法。

1、使用类加载器获取资源文件路径

public String getResourcePathByClassLoader() {
    ClassLoader classLoader = getClass().getClassLoader();
    URL resourceUrl = classLoader.getResource("test.txt");
    return resourceUrl.getPath();
}

2、使用ClassPathResource获取资源文件路径

import org.springframework.core.io.ClassPathResource;
public String getResourcePathByClassPathResource() {
    ClassPathResource classPathResource = new ClassPathResource("test.txt");
    return classPathResource.getFile().getAbsolutePath();
}

3、使用FileSystemResource获取资源文件路径

import org.springframework.core.io.FileSystemResource;
import java.io.File;
public String getResourcePathByFileSystemResource() {
    FileSystemResource fileSystemResource = new FileSystemResource(new File("test.txt"));
    return fileSystemResource.getFile().getAbsolutePath();
}

4、使用URL获取资源文件路径

public String getResourcePathByURL() throws MalformedURLException {
    URL resourceUrl = getClass().getClassLoader().getResource("test.txt");
    return resourceUrl.getPath();
}

5、使用相对路径获取资源文件路径

public String getResourcePathByRelativePath() {
    return getClass().getClassLoader().getResource("test.txt").getPath();
}

以上就是Java中获取resource文件路径的几种方法,在实际开发中,可以根据需要选择合适的方法来获取资源文件路径,需要注意的是,这些方法都是基于类加载器的,所以在使用时需要确保资源文件已经被加载到类加载器中,如果资源文件没有被加载,那么这些方法将返回null。

0