是否有可能在Android终端上运行一个简单的脚本? 我想运行以下命令
$su
$cd /Downloads
答案 0 :(得分:1)
尝试这样的事情:
try{
Process su = Runtime.getRuntime().exec("su");
DataOutputStream outputStream = new DataOutputStream(su.getOutputStream());
outputStream.writeBytes("screenrecord --time-limit 10 /sdcard/MyVideo.mp4\n");
outputStream.flush();
outputStream.writeBytes("exit\n");
outputStream.flush();
su.waitFor();
}catch(IOException e){
throw new Exception(e);
}catch(InterruptedException e){
throw new Exception(e);
}
也请阅读此SO question。
答案 1 :(得分:0)
是,在应用商店中搜索终端模拟器。