Jython中的Python解释器

时间:2015-07-31 18:12:12

标签: java python jython

我要做的就是将参数传递给python解释器,以便它可以作为模块的参数传递。

E.g。我在py文件中定义了以下内容:

    def print_twice(test):
       print test
       print test

我想传递“亚当”这个论点,所以我试过了:

    // Create an instance of the PythonInterpreter
    PythonInterpreter interp = new PythonInterpreter();

    // The exec() method executes strings of code
    interp.exec("import sys");
    interp.exec("print sys");

    PyCode pyTest = interp.compile("Adam", "C:/Users/Adam/workspace/JythonTest/printTwice.py");
    System.out.println(pyTest.toString());

我也尝试过:

        interp.eval("print_twice('Adam')");

我一直在使用以下Jython API,但我不太了解它: http://www.jython.org/javadoc/org/python/util/PythonInterpreter.html#compile%28java.lang.String,%20java.lang.String%29

我非常感谢您的建议。

谢谢

2 个答案:

答案 0 :(得分:1)

这应该有效:

interp.exec("import YOUR_PYTHON_FILE.py");
interp.exec("YOUR_PYTHON_FILE.print_twice('Adam')");

它在python控制台中的等价物是:

>>> import YOUR_PYTHON_FILE.py
>>> YOUR_PYTHON_FILE.print_twice('Adam')
Adam
Adam

答案 1 :(得分:0)

您不需要显式编译脚本,只需导入它,解释器就会负责编译。这样的事情(假设printTwice.py在你的程序的工作目录中:

interp.exec("from printTwice import print_twice");
interp.exec("print_twice('Adam')");

假设interp.eval确实包含print_twice语句,您不需要在第二行使用print;如果它只是返回一个字符串,那么你可能想要
System.out.println(interp.eval("print_twice('Adam')"));