我正在尝试导入作为 jar 文件分发的 Java API。我在 Stack Overflow 中的一个类似问题上按照这个答案的说明进行操作,但它没有用。
在 Jython 中,我做了:
>>> import sys
>>> sys.path.append("/path/to/jar/api")
>>> from com.thingmagic import *
Traceback (most recent calls last):
File "<stdin>", line 1, in <module>
ImportError: no module named thingmagic
我错过了什么还是我做错了什么?