如果Properties文件位于项目的根目录下,可以使用如下代码获取Properties文件的路径:
String filePath = System.getProperty("user.dir") + File.separator + "config.properties";
如果Properties文件位于src目录下,可以使用ClassLoader来获取Properties文件的路径:
ClassLoader classLoader = getClass().getClassLoader();
URL resource = classLoader.getResource("config.properties");
String filePath = resource.getPath();
上述代码获取到的路径是绝对路径,可以直接用于读取Properties文件。