Java调用python脚本并实现传参(绝对实用!)

Java调用python脚本并实现传参

本文为大家介绍java使用Runtime.getRuntime()执行python脚本文件方法,供大家参考。

java代码

public class Main {

        public static void main(String[] args) {

            try {
                String[] args1 = new String[] { "python", "F:/PycharmProjects/douban/testjava/testjava.py", "2","3"};//第二个为python脚本所在位置,后面的为所传参数(得是字符串类型)
                Process proc = Runtime.getRuntime().exec(args1);// 执行py文件

                BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream(),"gb2312"));//解决中文乱码,参数可传中文
                String line = null;
                while ((line = in.readLine()) != null) {
                    System.out.println(line);
                }
                in.close();
                proc.waitFor();
            } catch (IOException | InterruptedException e) {
                e.printStackTrace();
            }
    }
}

python脚本

import sys
def add():
    #参数从下标1开始取
    print(int(sys.argv[1])+int(sys.argv[2]))

if __name__ == '__main__':
    add()

运行结果截图
Java调用python脚本并实现传参(绝对实用!)_第1张图片
避坑:如果python脚本使用了第三方库,需要把第三方库复制到py脚本同目录。

注意:本文代码在关键地方进行了注解,有不懂的地方多尝试。如果对你有帮助,请帮我点个赞,转载请注明出处,谢谢。

你可能感兴趣的:(遇到的问题,python,java)