【Java】获取resources路径下的文件


 

public class ResourceUtil {
    /**
     * 获取resources路径下的文件路径
     *
     * @param filePath 若文件路径为“E:/Code/UiAuto/boos/src/main/resources/driver/chromedriver.exe” 则仅传“driver/chromedriver.exe”即可
     * @return
     */
    public static String getPath(String filePath) {
        return Thread.currentThread().getContextClassLoader().getResource("").getPath() + filePath;
    }
}

 

原创文章,作者:端木书台,如若转载,请注明出处:https://blog.ytso.com/272701.html

(0)
上一篇 2022年7月9日
下一篇 2022年7月9日

相关推荐

发表回复

登录后才能评论