我在我的 Eclipse 项目中使用json-simple作为外部 Jar。此外部Jar的 Classpath已正确设置到 .classpath 文件中:
<?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 [...]
我不明白为什么,我想我错过了一些东西,但我无法弄清楚。
感谢您的帮助。