可能重复:
Linux commands from Java
我正在开发一个Java应用程序,我需要从我的应用程序运行linux命令。怎么做?
答案 0 :(得分:2)
您可以使用:
/* build up command and launch */
String command = "DO SOMETHING";
try {
Runtime.getRuntime().exec(command);
} catch (Exception ex) {
ex.printStackTrace();
}
答案 1 :(得分:1)
您可以使用Runtime.exec()方法。
答案 2 :(得分:1)
这样的例子:
String [] arrs = new String [3] ;
arrs[0] = "/bin/bash";
arrs[1] = "-c";
arrs[2] = "rm s*" ;
pp=Runtime.getRuntime().exec(arrs);
pp.waitFor();
从存储java代码的目录中删除以s开头的文件。