在Java中获取项目的根目录可以使用以下方法:
String rootDirectory = System.getProperty("user.dir");
System.out.println("Root Directory: " + rootDirectory);
ClassLoader classLoader = getClass().getClassLoader();
URL rootUrl = classLoader.getResource("");
String rootDirectory = new File(rootUrl.getPath()).getAbsolutePath();
System.out.println("Root Directory: " + rootDirectory);
这两种方法都可以获取项目的根目录,选择其中一种适合你的需求即可。