java4python

PythonInterpreter interpreter = new PythonInterpreter();

//调整个文件
//interpreter.execfile("C:\\Users\\14779\\Documents\\IdeaProjects\\System\\src\\main\\java\\aa.py");

//调单个函数
interpreter.execfile("C:\\Users\\14779\\Documents\\IdeaProjects\\System\\src\\main\\java\\aa.py");
PyFunction pyFunction = interpreter.get("add", PyFunction.class);//函数名
int a = 5, b = 10;//准备参数
PyObject 函数返回值 = pyFunction.__call__(new PyInteger(a), new PyInteger(b));//调用函数(准备好的参数转python)
System.out.println("返回值是: " + 函数返回值);
上一篇:推荐8个实现 SVG 动画的 JavaScript 库


下一篇:CF803G Periodic RMQ Problem 口胡