IDEA中获取类加载路径和项目根路径
Posted zhang-cb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IDEA中获取类加载路径和项目根路径相关的知识,希望对你有一定的参考价值。
/** * 第一种:获取类加载的根路径 D:\Work\IdeaProjects\HelloVelocity\target\classes */ File f = new File(ControllerUtils.class.getClass().getResource("/").getPath()); System.out.println("第一种:获取类加载的根路径"); System.out.println(f); // 获取当前类的所在工程路径; 如果不加“/”获取当前类的加载目录 D:\IdeaProjects\cdby_wan\WebRoot\WEB-INF\classes\test\com File f2 = new File(ControllerUtils.class.getClass().getResource("").getPath()); System.out.println(f2); /** * 第二种:获取项目路径 D:\Work\IdeaProjects\HelloVelocity */ File directory = new File("");// 参数为空 String courseFile = directory.getCanonicalPath(); // Tomcat环境中运行,会获取Tomcat安装目录的bin目录,不推荐使用 System.out.println("第二种:获取项目路径"); System.out.println(courseFile); /** * 第三种: /D:/Work/IdeaProjects/HelloVelocity/target/classes/ */ String path = ControllerUtils.class.getClassLoader().getResource("").getPath(); System.out.println("第三种:"); System.out.println(path); /** * 第四种: D:\Work\IdeaProjects\HelloVelocity * 结果: C:\Documents and Settings\Administrator\workspace\projectName * 获取当前工程路径 */ System.out.println("第四种:"); System.out.println(System.getProperty("user.dir")); /** * 第五种: 获取所有的类路径 包括jar包的路径 */ System.out.println(System.getProperty("java.class.path"));
以上是关于IDEA中获取类加载路径和项目根路径的主要内容,如果未能解决你的问题,请参考以下文章