2017-03-22 183 views
0

在一個項目上工作約一週後,它突然停止導出。每次我嘗試導出我的項目時,我都會收到錯誤消息。我的班級沒有什麼是錯的。類路徑上的類文件未找到或不可訪問

 JAR creation failed. See details for additional information. 
    Class files on classpath not found or not accessible for: 
    'TroubleInTT/src/me/infernoartz/timv/Main.java' 
    Class files on classpath not found or not accessible for: 
    'TroubleInTT/src/me/infernoartz/timv/GameState.java' 
    Class files on classpath not found or not accessible for: 
    'TroubleInTT/src/me/infernoartz/timv/commands/RoleCommand.java' 
    Class files on classpath not found or not accessible for: 
    'TroubleInTT/src/me/infernoartz/timv/commands/TimvCommand.java' 
    Class files on classpath not found or not accessible for: 
    'TroubleInTT/src/me/infernoartz/timv/events/PlayerInteractEvent.java' 

    And so it continues down.. 
+0

你能告訴我們你的類路徑嗎?應該在eclipse中的.classpath'文件中 – xander

+0

哪裏很重要? – InfernoArtz

+0

對不起,我很忙。該文件應該直接在你的項目根文件夾中,或者在eclipse中按下CTRL + SHIFT + R並輸入'.classpath'。或者,右鍵單擊一個eclipse項目並選擇Properties,選擇左側的Java Build Path鏈接。然後選擇Source選項卡。您將看到所有java源文件夾的列表。 – xander

回答

1

是!因爲@xander發佈了我的一個朋友,他已經將一個.jar文件導入到項目中。我只是不得不從.classpath中刪除它,謝謝!

相關問題