exec后,得不到输入流?或输入流为空?
process = Runtime.getRuntime().exec("/system/bin/ping -c 1 -w 10 $inputText")
process.waitFor()
inputS = process.inputStream
:此处的waitFor(),在结束子进程时也可以联合调用
附 Process类的概览:
int waitFor()
返回值int:子进程的exit code, 0表示正常结束
boolean waitFor(long timeout, TimeUnit unit)
等待固定时间:进程如果在时间限定范围内结束,提前结束等待;若规定时间到了,进程还没正常结束,就强制结束。
返回值true表示进程正常结束,false到了时间还没正常结束
int exitValue()
返回子进程的exit code
void destroy() 结束子进程
Process destroyForcibly() 强制结束,注意:调用此方法后,进程并不一定会立即结束
boolean isAlive() 返回子进程-是否还存活
---------------------------------------------------
InputStream getErrorStream() 得到子进程错误输出流
Returns the input stream connected to the error output of the subprocess
InputStream getInputStream() 得到子进程标准输出流
Returns the input stream connected to the normal output of the subprocess
OutputStream getOutputStream()
得到一个输出流,通过管道输出数据到子进程的标准输入流