Java可以通过Runtime调用Linux命令,形式如下:
Runtime.getRuntime().exec(command)
但是这样执行时没有任何输出,因为调用Runtime.exec方法将产生一个本地的进程,并返回一个Process子类的实例(注意:Runtime.getRuntime().exec(command)返回的是一个Process类的实例)该实例可用于控制进程或取得进程的相关信息。
由于调用Runtime.exec方法所创建的子进程没有自己的终端或控制台,因此该子进程的标准IO(如stdin,stdou,stderr)都通过Process.getOutputStream(),Process.getInputStream(),Process.getErrorStream()方法重定向给它的父进程了。
用户需要用这些stream来向子进程输入数据或获取子进程的输出,下面的代码可以取到linux命令的执行结果:
try{
String[]cmd=newString[]{”/bin/sh”,“-c”,”ls“}
Processps=Runtime.getRuntime().exec(cmd)
BufferedReaderbr=newBufferedReader(newInputStreamReader(ps.getInputStream()))
StringBuffersb=newStringBuffer()
Stringline
while((line=br.readLine())!=null){
sb.append(line).append(”\n”)
}
Stringresult=sb.toString()
System.out.println(result)
}catch(Exceptione){
e.printStackTrace()
}
java提供的Runtime 这个类来执行系统命令的,用法如下:1.得到Runtime对象。
public void execCommand(String command) throws IOException {
// start the ls command running
//String[] args = new String[]{"sh", "-c", command}
Runtime runtime = Runtime.getRuntime()
Process proc = runtime.exec(command) //这句话就是shell与高级语言间的调用
//如果有参数的话可以用另外一个被重载的exec方法
//实际上这样执行时启动了一个子进程,它没有父进程的控制台
//也就看不到输出,所以需要用输出流来得到shell执行后的输出
2.得到输入流。
InputStream inputstream = proc.getInputStream()
InputStreamReader inputstreamreader = new InputStreamReader(inputstream)
BufferedReader bufferedreader = new BufferedReader(inputstreamreader)
// read the ls output
String line = ""
StringBuilder sb = new StringBuilder(line)
while ((line = bufferedreader.readLine()) != null) {
//System.out.println(line)
sb.append(line)
sb.append('\n')
}
//tv.setText(sb.toString())
//使用exec执行不会等执行成功以后才返回,它会立即返回
//所以在某些情况下是很要命的(比如复制文件的时候)
//使用wairFor()可以等待命令执行完成以后才返回
try {
if (proc.waitFor() != 0) {
System.err.println("exit value = " + proc.exitValue())
}
}
catch (InterruptedException e) {
System.err.println(e)
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)