我试图导入一个Java API,它分布为jar文件。 我跟着从说明这个答案在堆栈溢出类似的问题,但没有奏效。
在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
我缺少的东西还是我做错了什么?