eclipse專案中的.classpath檔案
阿新 • • 發佈:2018-12-13
1、.classpath檔案的作用
(1).classpath檔案定義了你的專案在編譯時所需要使用的classpath路徑
(2)classpath是Java執行時環境搜尋類和其他資原始檔(比如jar\zip等資源)的路徑
(3)簡單的描述即.classpath檔案中有一些路徑,通過這些路徑可以訪問到程式所依賴的資源
2、.classpath檔案的內容
<?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/> <classpathentry kind="output" path="bin"/> </classpath>
(1)kind="src"表示原始檔,path=”src”是一個相對路徑,相對.classpath檔案位置,即說明Java原始檔儲存在與.classpath檔案在同
一目錄下的src目錄下
(2)kind="output"表示java原始檔編譯後的.class檔案存放路徑,path="bin"表示編譯後的 .class檔案儲存在和.classpath檔案同一目
錄下的bin目錄下
(3)kind="con"表示程式執行的系統環境,由於該程式很簡單,只用定位JRE提供的環境
(4)kind="lib"表示工程所依賴的library的具體位置資訊(該程式簡單,暫無此項)