Java中获取项目根路径和类加载路径的方法
Java中获取项目根路径和类加载路径的方法(1):this.getClass().getResource("/");(2):file.getCanonicalPath();(3):this.getClass().getClassLoader();(4):System.getProperty("user.dir");(5):System.getProperty("java.class.path");(6):Thread.currentTh