一、起因:网上有不少Java调用Python程序方法的文章,但是都有提到获取line一直是空的问题。
直接上Java调用Python程序代码
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Demo1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Process proc;
try {
proc = Runtime.getRuntime().exec("python D:\\demo1.py"); // 执行py文件
// 用输入输出流来截取结果
BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
String line = null;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
in.close();
proc.waitFor();
}
catch (IOException e) {
e.printStackTrace();
}
catch (InterruptedException e) {
e.printStackTrace();
}
}
}
import numpy as np
a = np.arange(12).reshape(3,4)
print(a)
demo1.py文件内容
运行java程序控制台打印结果:Process finished with exit code 1(没有报错,就是没有输出东西)
二、原因很简单就是没有安装Numpy
三、解决方法:在黑窗口执行cmd命令pip3?install?numpy?scipy?matplotlib?-i?https://pypi.tuna.tsinghua.edu.cn/simple
?再次执行java程序,已经可以打印出结果了
?
|