在Java中,获取resource文件路径的方法有以下几种:
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。
原创文章,作者:酷盾叔,如若转载,请注明出处:https://www.kdun.com/ask/295814.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复