在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);
這兩種方法都可以獲取項目的根目錄,選擇其中一種適合你的需求即可。