亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學習啦>學習電腦>電腦安全>系統(tǒng)安全>

      java怎么獲取項目路徑

      時間: 黎正888 分享

      java怎么獲取項目路徑

        Java中項目路徑,就是classpath了。下面就讓學習啦小編教大家java怎么獲取項目路徑吧。

        java獲取項目路徑的方法

        項目路徑,就是指classpath的根路徑了。

        是查找配置文件和classloader加載bytecode的起點

        這次就以IntelliJ IDEA為例,來聊聊項目路徑,也就是classpath的事

        前面分享了一篇classpath和path的區(qū)別,有興趣的tx可以去看看

        使用Java API來查看。

        Code:

        public class ClassPathDemo {

        public static void main(String[] args) {

        String classPath = ClassPathDemo.class.getResource("/").getPath(); System.out.println("項目路徑:" + classPath);

        }

        }

        執(zhí)行上述代碼,看看打印的信息

        Output:

        項目路徑:/E:/java/JavaStudy/out/production/JavaStudy/

        在使用IDEA的過程,通過API查看項目路徑來找編譯好的class比較麻煩。

        這個完全可以在IDEA的配置中的找嘛

        下面就分享下在IDEA配置中怎么查看項目路徑,也就是找到執(zhí)行代碼的classpath

        在Project 面板中點右鍵,在彈出的菜單中選“Open Module Settings”

        在彈出的“Project Structure”對話框中,選中“Paths”Tab選項卡

        在Compiler output中,默認選擇的是“Inherit project compile output path”

        也就是當前module使用的是Project的Compiler output路徑。

        那么Project的Compiler output路徑在哪呢?

        點左側的“Project”選項,在右側窗口可以看到Project的compiler output

        這個路徑是不是和JAVA API的輸入基本是一致的呢。

        “This directory contains tow subdirectories:Production and Test for production code and test sources,respectively.”

      java怎么獲取項目路徑相關文章:

      1.java簡歷中項目經驗怎么寫

      2.JAVA工作經驗簡介 java簡歷中項目經驗怎么寫

      3.java簡歷項目經驗怎么寫

      4.java簡歷項目技術怎么描述

      5.JAVA如何獲取計算機硬件信息

      2152640