Java 中获取类路径 classpath 的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 中获取类路径 classpath 的方法相关的知识,希望对你有一定的参考价值。


System.out.println("++++++++++++++++++++++++");
String path = System.getProperty("java.class.path");
String path2 = FreeMarkerWriter.class.getProtectionDomain().getCodeSource().getLocation().getPath();
String path3 = FreeMarkerWriter.class.getProtectionDomain().getCodeSource().getLocation().getFile();
String path4 = Thread.currentThread().getContextClassLoader().getResource("").getPath();
System.out.println("path 1 = " + path);
System.out.println("path 2 = " + path2);
System.out.println("path 3 = " + path3);
System.out.println("path 4 = " + path4);
System.out.println("++++++++++++++++++++++++");

  

以上是关于Java 中获取类路径 classpath 的方法的主要内容,如果未能解决你的问题,请参考以下文章

加jar包啥时候需要添加类路径

classpath:类路径

关于web工程中java类如何获取webapp路径下的文件

java代码中获取classpath路径

Class类getResource方法获取文件路径

java 获取当前classpath的绝对路径