Java调用Python脚本工具类

本文介绍了一种在Java中调用Python脚本的方法,并提供了一个处理中文输出问题的工具类示例。通过Runtime.getRuntime().exec()方法执行Python脚本,并使用BufferedReader从标准输入流读取结果。

[本文出自天外归云的博客园]

在网上查了很多方法都不成功,在google上搜到一篇文章,做了一些小修改,能够处理中文输出。提取一个运行python脚本的Java工具类如下:

package com.autox.util;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class RunPython {
    public static ArrayList<String> run_py(String script) {
        String s = null;
        ArrayList<String> result = new ArrayList<String>();
        ArrayList<String> error = new ArrayList<String>();
        try {
            Process p = Runtime.getRuntime().exec(script);
            BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream(), "GBK"));
            BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream()));
            while ((s = stdInput.readLine()) != null) {
                result.add(s);
            }
            while ((s = stdError.readLine()) != null) {
                error.add(s);
            }
            if (error != null) {
                System.out.println(error);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        return result;
    }
}

Java中调用方法如下:

ArrayList<String> result = RunPython.run_py("python script_path args");
for (String item : result) {
    System.out.println(item);
}

其中script_path需替换为Python脚本路径,args替换为向脚本传递的参数。

转载于:https://www.cnblogs.com/LanTianYou/p/6635386.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值