Runtime.getruntime.exec注意事项
1.普通使用–简单命令
Runtime.getruntime.exec(command);
// 可以是命令本身(ls)或者是脚本(/usr/local/test.sh)
String command = "ls";
Process proc = Runtime.getRuntime().exec(command);
BufferedReader in = new BufferedReader(new InputStreamReader(proc.getInputStream()));
String line = null;
//读取结果
while((line = in.readLine()) != null) {
result.append(line);
}
in.close();
2.指定文件下执行命令
在 usr/local 文件下执行command命令。
Runtime.getRuntime().exec(command,new String[]{},"/usr/local")
注意事情(有过滤脚本)
如果命令中有管道|.此时执行命令是没有返回值的。必须采用编写脚本的方式。
获取java进程
eg: ps -ef|grep java
//这样是没有返回值的
Runtime.getRuntime().exec("ps -ef|grep java")
// 必须先写文件,然后执行文件脚本有返回值
File file = new File("/usr/local/grepCommand.sh")
if(!file.exists()){
file.createNewFile();
}
FileOutputStream fos = new FileOutputStream(file);
fos.write("ps -ef|grep java".getBytes());
fos.close();
Runtime.getRuntime().exec("chmod 777 /usr/local/grepCommand.sh")
//防止下面命令执行太快 权限还没好
Thread.sleep(500);
//此处可拿到结果
Runtime.getRuntime().exec("/usr/local/grepCommand.sh")
注意事项2
如果执行的脚本是反复回写的流。执行的时候线程可能偶先自动中断的场景。
原因是网络不稳定,切换到光口中去。