Python解释器Jython - 模块的执行

时间:2015-07-31 23:07:09

标签: java python jython

以下是问题的链接: Python Interpreter in Jython

以下是一个潜在的解决方案:

    interp.exec("import os.path.abspath(__file__)/printTwice.py)");
    interp.exec("printTwice.print_twice('Adam')");

但是它返回了错误:

这返回了以下错误:线程“main”中的异常SyntaxError :(“mismatched input'('expecting NEWLINE',('',1,22,'import os.path.abspath(file)/printTwice.py )\ n'))

1 个答案:

答案 0 :(得分:1)

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

这应该有用。