JAVA获取当前类所在的路径的方法

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 第一种:获取类加载的根路径
File f = new File(this.getClass().getResource("/").getPath());
System.out.println(f);
 
// 获取当前类的所在工程路径; 如果不加“/”  获取当前类的加载目录  D:\git\daotie\daotie\target\classes\my
File f2 = new File(this.getClass().getResource("").getPath());
System.out.println(f2);
 
// 第二种:获取项目路径    D:\git\daotie\daotie
File directory = new File("");// 参数为空
String courseFile = directory.getCanonicalPath();
System.out.println(courseFile);
 
 
// 第三种:  file:/D:/git/daotie/daotie/target/classes/
URL xmlpath = this.getClass().getClassLoader().getResource("");
System.out.println(xmlpath);
 
 
// 第四种: D:\git\daotie\daotie
System.out.println(System.getProperty("user.dir"));
/*
 * 结果: C:\Documents and Settings\Administrator\workspace\projectName
 * 获取当前工程路径
 */
 
// 第五种:  获取所有的类路径 包括jar包的路径
System.out.println(System.getProperty("java.class.path"));

  

 

--转载    JAVA获取当前类所在的路径的方法_qq_17763983的博客-CSDN博客_java获得当前类路径

 

posted @   忆舒  阅读(3724)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 一文读懂知识蒸馏
· 终于写完轮子一部分:tcp代理 了,记录一下
点击右上角即可分享
微信分享提示