Java中獲得類途徑classpath的簡略辦法(推舉)。本站提示廣大學習愛好者:(Java中獲得類途徑classpath的簡略辦法(推舉))文章只能為提供參考,不一定能成為您想要的結果。以下是Java中獲得類途徑classpath的簡略辦法(推舉)正文
以下所示:
<SPAN > 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("++++++++++++++++++++++++"); </SPAN>
以上這篇Java中獲得類途徑classpath的簡略辦法(推舉)就是小編分享給年夜家的全體內容了,願望能給年夜家一個參考,也願望年夜家多多支撐。