java调用python脚本的常用方法有两种。下面就为大家介绍一下:
·
通过Jython.jar提供的类库实现
·
通过Runtime.getRuntime()开启进程来执行脚本文件
python学习网,大量的免费
,欢迎在线学习!
这两种方法我都试过了,个人推荐第二种方法,因为Python有时需要用到第三方库,比如requests,Jython不支持。所以在本地安装Python环境,安装第三个库,然后从Java中调用是最好的方法。
下面两个小例子,不带参数和带参数,展示如何使用Java调用Python脚本:
Python代码:
def hello():
print('Hello,Python')
if __name__ == '__main__':
hello()
Java代码:
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class HelloPython {
public static void main(String[] args) {
String[] arguments = new String[] {"python", "E://workspace/hello.py"};
try {
Process process = Runtime.getRuntime().exec(arguments);
BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream(),
"GBK"));
String line = null;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
in.close();
//java代码中的process.waitFor()返回值为0表示我们调用python脚本成功,
//返回值为1表示调用python脚本失败,这和我们通常意义上见到的0与1定义正好相反
int re = process.waitFor();
System.out.println(re);
} catch (Exception e) {
e.printStackTrace();
}
}
}
一点,BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream(), "GBK"));这段代码中加入了GBK,防止Python输出中文时出现乱码。
运行结果:
接下来是带参数的,Python代码:
import sys
def hello(name,age):
print('name:'+name)
print('age:'+age)
if __name__ == '__main__':
hello(sys.argv[1], sys.argv[2])
Java代码:
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class HelloPython {
public static void main(String[] args) {
String[] arguments = new String[] {"python", "E://workspace/hello.py","lei","23"};
try {
Process process = Runtime.getRuntime().exec(arguments);
BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream(),
"GBK"));
String line = null;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
in.close();
//java代码中的process.waitFor()返回值为0表示我们调用python脚本成功,
//返回值为1表示调用python脚本失败,这和我们通常意义上见到的0与1定义正好相反
int re = process.waitFor();
System.out.println(re);
} catch (Exception e) {
e.printStackTrace();
}
}
}
运行结果:
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python安装路径可以改吗?09/04
- ♥ Python正则表达式字符串的组成11/20
- ♥ 微博热搜停更?不用怕,python教你自动保存全部热搜01/02
- ♥ 如何安装python而不会失败?09/04
- ♥ python3下载re库报错怎么办?11/24
- ♥ 如何判断一个网页元素是否存在于python中09/27
内容反馈