Calling Python from Java through scripting engine (jython)?

戏子无情 提交于 2019-11-30 02:48:15

You have to register your engine first.

From: ScriptEngineManager.getEngineByName:

[...] first searches for a ScriptEngineFactory that has been registered as a handle [...] Returns null if no such factory was found

The user guide says to use it with JSR-223 you have to:

As of Jython 2.5.1 an implementation of JSR 223 is bundled in jython.jar. Simply add jython to your CLASSPATH and ask for the python script engine.

Did you do that already?

EDIT About your comment: I think you should open a new question, you'll get better answers.

You'd probably have to register a ScriptEngineFactory for'python'

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!