在java程序中调用批处理防止执行世界过长卡死的工具类

StreamGobbler是一个线程类,专门用于处理Runtime.getRuntime().exec方法产生的错误流和输出流。它读取InputStream,使用GBK编码,将内容输出到指定OutputStream并记录日志。
摘要由CSDN通过智能技术生成

/**
 * 用于处理Runtime.getRuntime().exec产生的错误流及输出流
 */
public class StreamGobbler extends Thread {
    private static final Logger LOGGER = LoggerFactory.getLogger(StreamGobbler.class);
    InputStream is;
    String type;
    OutputStream os;
    public StreamGobbler(InputStream is, String type) {
        this(is, type, null);
    }

    StreamGobbler(InputStream is, String type, OutputStream redirect) {
        this.is = is;
        this.type = type;
        this.os = redirect;
    }

    public void run() {
        InputStreamReader isr = null;
        BufferedReader br = null;
        PrintWriter pw = null;
        try {
            if (os != null) {
                pw = new PrintWriter(os);
            }
            isr = new InputStreamReader(is,"GBK");
            br = new BufferedReader(isr);
            String line=null;
            while ( (line = br.readLine()) != null) {
                if (pw != null) {
                    pw.println(line);
                }
                LOGGER.info(">>" +  type+"  "+line);
            }

            if (pw != null){
                pw.flush();
            }

        } catch (IOException ioe) {
            ioe.printStackTrace();
        } finally{
            try {
                pw.close();
                br.close();
                isr.close();
            } catch (IOException e) {
            }
        }

    }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值