阅读量:4
在Java中调用Python类方法需要借助于Jython库。Jython是一个将Python代码解释执行的Java实现。
以下是一个示例代码,演示如何在Java中调用Python类方法:
首先,确保你已经安装了Jython。可以从Jython官方网站下载Jython压缩包,并将其解压缩到合适的位置。
创建一个Java项目,并将Jython库添加到classpath中。
创建一个名为
PythonCaller.java
的Java类,编写以下代码:
import org.python.util.PythonInterpreter; public class PythonCaller { public static void main(String[] args) { PythonInterpreter interpreter = new PythonInterpreter(); // 导入python模块 interpreter.exec("from example import MyClass"); // 创建Python类实例 interpreter.exec("my_object = MyClass()"); // 调用Python类方法 interpreter.exec("result = my_object.my_method()"); // 获取Python方法返回值 String result = interpreter.get("result").toString(); System.out.println("Python方法返回值: " + result); // 关闭Python解释器 interpreter.close(); } }
- 创建一个名为
example.py
的Python模块,编写以下代码:
class MyClass: def my_method(self): return "Hello from Python"
- 运行Java程序,你将看到输出结果为:
Python方法返回值: Hello from Python
。
这样就实现了在Java中调用Python类方法的功能。