Home > Article > Backend Development > How can I execute Python functions within my Java application using Jython?
Jython, a Python implementation designed for the Java Virtual Machine (JVM), enables seamless integration between Python and Java code. While Jython is renowned for its capability to execute Java code within Python, it also provides the ability to call Python functions from Java.
To utilize Python functions in Java, follow these steps:
For instance:
<code class="java">PythonInterpreter interpreter = new PythonInterpreter(); interpreter.exec("import sys\nsys.path.append('pathToModules')\nimport yourModule"); PyObject someFunc = interpreter.get("funcName"); PyObject result = someFunc.__call__(new PyString("Test!")); String realResult = (String) result.__tojava__(String.class);</code>
Note: Jython does not currently support Python 3.x versions.
The above is the detailed content of How can I execute Python functions within my Java application using Jython?. For more information, please follow other related articles on the PHP Chinese website!