// 第一種:獲取類加載的根路徑 D:\IDEAWorkspace\hs-bluetooth-lock\src\applications\bluetooth-api\target\classes File f = new File(this.getClass().getResource("/").getPath()); System.out.println(f); // 獲取當前類的所在工程路徑; 如果不加“/” 獲取當前類的加載目錄 D:\IDEAWorkspace\hs-bluetooth-lock\src\base\target\classes\com\hs\lock\bluetooth\base\utils File f2 = new File(this.getClass().getResource("").getPath()); System.out.println(f2); // 第二種:獲取項目路徑 D:\IDEAWorkspace\hs-bluetooth-lock File directory = new File("");// 參數為空 String courseFile = directory.getCanonicalPath(); System.out.println(courseFile); // 第三種: file:/D:/IDEAWorkspace/hs-bluetooth-lock/src/applications/bluetooth-api/target/classes/ URL xmlpath = this.getClass().getClassLoader().getResource(""); System.out.println(xmlpath); // 第四種: 獲取當前工程路徑 D:\IDEAWorkspace\hs-bluetooth-lock System.out.println(System.getProperty("user.dir")); // 第五種: 獲取所有的類路徑 包括jar包的路徑 System.out.println(System.getProperty("java.class.path"));