在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。
分享标题:java获取resource目录路径
链接URL:http://www.csdahua.cn/qtweb/news22/413272.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网