我使用json-simple作爲外部Jar到我的Eclipse項目。 此外部JAR類路徑是否正確設置成.classpath文件:Jar內Eclipse項目運行時錯誤
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
[...]
<classpathentry kind="lib" path="json-simple-1.1.1.jar"/>
[...]
</classpath>
Java代碼編譯沒有任何錯誤。
當我運行編譯的代碼我得到以下運行時錯誤:
Could not find class 'org.json.simple.parser.JSONParser', referenced from method [...]
我不明白爲什麼,我覺得我失去了一些東西,但我無法弄清楚。
謝謝你的幫助。
你是如何運行代碼? – Jeremy
我使用Eclipse運行它(運行菜單 - >運行)。這是一個Android項目,我在模擬器上運行它。 – TPPZ