JAVA获得项目根路径

JAVA获得项目根路径

// 第一种:
File f = new File(Objects.requireNonNull(this.getClass().getResource("/")).getPath());
System.out.println("path1: "+f);

// 第二种:
File directory = new File("");// 参数为空
String courseFile = directory.getCanonicalPath();
System.out.println("path2: "+courseFile);

// 第三种:
URL xmlPath = this.getClass().getClassLoader().getResource("");
System.out.println("path3: "+xmlPath);

// 第四种:
System.out.println("path4: " +System.getProperty("user.dir"));

// 第五种:
System.out.println("path5: "+System.getProperty("java.class.path").split(";")[0]);

// 第六种:
System.out.println("path6: "+Thread.currentThread().getContextClassLoader().getResource("").getPath());

// 第七种:
File f2 = new File(Objects.requireNonNull(this.getClass().getResource("")).getPath());
System.out.println("path7: "+f2);

// 第八种:
String path = "";
try {
    path = ResourceUtils.getURL("classpath").getPath();
} catch (FileNotFoundException e) {
    e.printStackTrace();
}
System.out.println("path8: "+path);

输出的结果:

项目名:swagger-codegen 模块名:codegen-service

path1: D:\IDEAworkspace\swagger-codegen\codegen-service\target\classes
path2: D:\IDEAworkspace\swagger-codegen
path3: file:/D:/IDEAworkspace/swagger-codegen/codegen-service/target/classes/
path4: D:\IDEAworkspace\swagger-codegen
path5: C:\Program Files\java\jdk1.8.0_262\jre\lib\charsets.jar
path6: /D:/IDEAworkspace/swagger-codegen/codegen-service/target/classes/
path7: D:\IDEAworkspace\swagger-codegen\codegen-service\target\classes\com\codegen\codegenservice\controller
path8: /D:/IDEAworkspace/swagger-codegen/classpath
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值