Runtime.getRuntime().exec(...)使用方法

本文提供了一个关于如何正确使用Java中的Runtime.getRuntime().exec(...)方法的示例,并解释了常见错误及其解决办法。
上两周问答大赛的时候,看到了很多人问为什么自己调用的Runtime.getRuntime().exec(...)方法没有返回。其实没有返回的原因很多,但是前提你要写出一个正确的exec

如果想要了解更多的信息,参阅代码里面给的链接

下面是这个正确的例子

public class RuntimeExec {
/**
* Runtime execute.
*
* @param cmd the command.
* @return success or failure
* @see {@link http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html?page=4}
* @since 1.1
*/
public static boolean runtimeExec(String cmd) {
try {
Process proc = Runtime.getRuntime().exec(new String[]{"/bin/sh", "-c", cmd});

// any error message?
StreamGobbler errorGobbler = new StreamGobbler(proc.getErrorStream(), "ERROR");

// any output?
StreamGobbler outputGobbler = new StreamGobbler(proc.getInputStream(), "OUTPUT");

// kick them off
errorGobbler.start();
outputGobbler.start();


if (proc.waitFor() != 0) {
System.err.println("执行\"" + cmd + "\"时返回值=" + proc.exitValue());
return false;
} else {
return true;
}
} catch (Exception e) {
e.printStackTrace();
return false;
}
}

static class StreamGobbler extends Thread {
InputStream is;
String type;

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

public void run() {
try {
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line = null;
while ((line = br.readLine()) != null)
System.out.println(type + ">" + line);
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值