Java中获取类路径classpath的简单方法(推荐)
如下所示:
<SPANstyle="FONT-SIZE:18px">
System.out.println("++++++++++++++++++++++++");
Stringpath=System.getProperty("java.class.path");
Stringpath2=FreeMarkerWriter.class.getProtectionDomain().getCodeSource().getLocation().getPath();
Stringpath3=FreeMarkerWriter.class.getProtectionDomain().getCodeSource().getLocation().getFile();
Stringpath4=Thread.currentThread().getContextClassLoader().getResource("").getPath();
System.out.println("path1="+path);
System.out.println("path2="+path2);
System.out.println("path3="+path3);
System.out.println("path4="+path4);
System.out.println("++++++++++++++++++++++++");
</SPAN>
以上这篇Java中获取类路径classpath的简单方法(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。