【发布时间】:2020-04-11 12:59:39
【问题描述】:
我尝试在 Java 中使用 PythonInterpreter,但无法在 Intellij 中导入 org.python.util.PythonInterpreter 包。所以下面的代码无法编译:
import org.python.util.PythonInterpreter;
import org.python.core.*;
public class SimpleEmbedded {
public static void main(String[] args) throws PyException {
PythonInterpreter interp = new PythonInterpreter();
System.out.println("Hello, brave new world");
interp.exec("import sys");
interp.exec("print sys");
interp.set("a", new PyInteger(42));
interp.exec("print a");
interp.exec("x = 2+2");
PyObject x = interp.get("x");
System.out.println("x: "+x);
System.out.println("Goodbye, cruel world");
}
}
我尝试下载 jython zip 库,但 Intellij 无法识别该库。对我有什么建议吗?
【问题讨论】:
标签: java intellij-idea jython