我有一个python组件,可以独立运行并作为Windows服务运行。这个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文件。