org.python jython-standalone2.7.0
@RestController
public class TestController {
@RequestMapping(value = "/startPython",method = RequestMethod.GET)
public void ExecPython()
{
System.out.println("----开始调用----");
PythonInterpreter pythonInterpreter = new PythonInterpreter();
pythonInterpreter.execfile("F:\project\python\test.py");
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)