【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; } }
标签:Java,String,filePath,路径,getPath,chromedriver,resources 来源: https://www.cnblogs.com/danhuai/p/16459253.html