我有一个独立工作并作为 Windows 服务运行的 python 组件。这个 python 的一个特定文件完成了一个特定的工作,我需要使用我的 java 类来调用它。由于是生产环境,不提供 .py 文件。要从 .py 文件调用方法“运行”,我使用以下代码:
PyInterpreter py = new PyInterpreter();
py.execfile("C:\\Users\\narendrar\\Desktop\\hello.py");
PyInstance hello = py.createClass("Hello", "None");
hello.invoke("run");
我想执行类似的操作,但使用编译后的 python 文件。
饮歌长啸
相关分类