我正在使用 Eclipse 将带有 Jython 脚本的 Java 应用程序导出到 jar 文件。Jython 脚本在我在 Eclipse IDE 中运行代码时执行,但在我运行相同代码的 jar 文件时它不执行。
我正在使用 java 函数执行 jython 脚本
PythonInterpreter interp = new PythonInterpreter();
interp.execfile(".com\\sample\\Script.py");
我在构建路径中包含 jython2.7 jar 作为外部 jar,并在 PyDeV 透视图中使用相同的 jar 作为解释器。