共计 622 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用以下代码获取当前项目的路径地址:
- 使用
System.getProperty("user.dir")
方法获取当前项目的工作目录路径,代码如下:
String projectPath = System.getProperty("user.dir");
System.out.println("当前项目路径:" + projectPath);
- 使用
ClassLoader
类的getResource()
方法获取当前类的绝对路径,然后通过截取可以得到当前项目的路径,代码如下:
String classPath = getClass().getResource("").getPath();
String projectPath = classPath.substring(0, classPath.indexOf("target"));
System.out.println("当前项目路径:" + projectPath);
- 使用
Paths.get("").toAbsolutePath().toString()
方法获取当前项目的绝对路径,代码如下:
String projectPath = Paths.get("").toAbsolutePath().toString();
System.out.println("当前项目路径:" + projectPath);
以上方法都可以用来获取当前项目的路径地址,具体使用哪种方法取决于你的需求和项目结构。
丸趣 TV 网 – 提供最优质的资源集合!
正文完