在robotium测试中经常会用到需要shell命令去执行一些操作,比如起一个acitivity,杀死一个进程,清空一个应用的数据等等。
下面是执行shell命令的方法,记录备忘
public void execShellCommand(String string) {
Runtime run = Runtime.getRuntime();
try {
Process p = run.exec(string); // 执行一个测试案例
} catch (IOException e) {
e.printStackTrace();
}
}