String relativePath = "."; // 相对于classpath根目录的文件路径
URL resourceUrl = Thread.currentThread().getContextClassLoader().getResource(relativePath);
File file = new File(resourceUrl.toURI());
System.out.println("文件路径:" + file.getAbsolutePath());
上面的.就是指的如下路径