以下是问题的链接: 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'))
答案 0 :(得分:1)
interp.exec("import printTwice");
interp.exec("printTwice.print_twice('Adam')");
这应该有用。