天天看点

Java 调用Python脚本

Java调用Python脚本有多种方式这里只利用其中一种常用的

public static void main(String[] args) {
		String[] arguments = new String[] { "python", "pythonScript/OptiAllcation.py"};//{"指定Python调用",Python脚本绝对路径}
		try {
			Process process = Runtime.getRuntime().exec(arguments);
			BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
			String line = null;
			while ((line = in.readLine()) != null) {
				System.out.println(line);//脚本返回值
			}
			in.close();
			int re = process.waitFor();// re = 0 表示调用成功; re= 1 表示调用失败
			System.out.println(re);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
           

这种方式相当于利用隐形cmd窗口调用 ,即类似于直接在cmd窗口中写命令: Python 脚本路径;

   //注意请先确保脚本能正确运行,再考虑Java的调用