1

我在我的java应用程序中以编程方式使用jython解释器(PythonInterpreter),我想添加一个特定的类,例如。MyJythonLib 作为 Jython 导入模块,以便我的 Jython 脚本可以具有以下内容:

import MyJythonLib
a = MyJythonLib.getStuff()

MyJythonLib.java 在哪里

public class MyJythonLib
{
    private Object stuff;
    public Object getStuff()
    {
        return stuff;
    }
}

如何将此类设置为我的 Jython 解释器的模块?

4

1 回答 1

0
  1. 确保MyJythonLib在您的类路径中。

  2. import MyJythonLib参考其完全限定名称。

例如:

import com.mycompany.MyJythonLib

或者:

from com.mycompany import MyJythonLib

或者:

import com.mycompany.MyJythonLib as MyJythonLib
于 2018-01-22T19:12:59.643 回答