虽然 Jython 主要以支持从 Python 脚本调用 Java 而闻名,但它也有能力弥补相反方面的差距
Jython 充当桥梁,允许 Java 应用程序无缝调用 Python 函数。要实现此目的:
为了说明如何使用 Jython 从 Java 调用 Python 函数,请考虑以下示例:
<code class="java">PythonInterpreter interpreter = new PythonInterpreter(); interpreter.exec("import sys\nsys.path.append('pathToModules if they are not there by default')\nimport yourModule"); // Calling a Python function that takes a string and returns a string PyObject someFunc = interpreter.get("funcName"); PyObject result = someFunc.__call__(new PyString("Test!")); String realResult = (String) result.__tojava__(String.class);</code>
需要注意的是,截至 2021 年,Jython 不支持 Python 3.x。因此,请确保您的 Python 代码满足这些限制,以便与 Java 成功集成。
以上是如何使用 Jython 从 Java 调用 Python 函数?的详细内容。更多信息请关注PHP中文网其他相关文章!