java执行Linux命令的方法
本文实例讲述了java执行Linux命令的方法。分享给大家供大家参考。具体实现方法如下:
public class StreamGobbler extends Thread {
InputStream is;
String type;
public 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) {
if (type.equals("Error")) {
System.out.println("Error :" + line);
} else {
System.out.println("Debug:" + line);
}
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
private void shell(String cmd)
{
String[] cmds = { "/bin/sh", "-c", cmd };
Process process;
try
{
process = Runtime.getRuntime().exec(cmds);
StreamGobbler errorGobbler = new StreamGobbler(process.getErrorStream(), "Error");
StreamGobbler outputGobbler = new StreamGobbler(process.getInputStream(), "Output");
errorGobbler.start();
outputGobbler.start();
try
{
process.waitFor();
}
catch (InterruptedException e)
{
e.printStackTrace();
}
}
catch (IOException e)
{
e.printStackTrace();
}
}
其中参数 cmd 为Linux命令。每次只能执行一条命令。
1.Java Runtime.exec()注意事项:
① 永远要在调用waitFor()方法之前读取数据流
② 永远要先从标准错误流中读取,然后再读取标准输出流
2.最好的执行系统命令的方法就是写个bat文件或是shell脚本。
希望本文所述对大家的Java程序设计有所帮助。相关阅读:
老版本PHP转义Json里的特殊字符的函数
C#实现向多线程传参的三种方式实例分析
IIS和.NET(1.1/2.0)的安装顺序及错误解决方法
jQuery插件之Tocify动态节点目录菜单生成器附源码下载
PHP根据session与cookie用户登录状态操作类的代码
在CentOS的防火墙上开启通行端口的方法
什么是cookie?js手动创建和存储cookie
jQuery中removeAttr()方法用法实例
C# 创建报表过程详解
PHP答题类应用接口实例
iOS开发中使用Picker View实现一个点菜应用的UI示例
快速掌握Node.js模块封装及使用
JavaScript基础知识及常用方法总结
jQuery通用的全局遍历方法$.each()用法实例